Mesa (master): st/mesa: Only get mesa mvp dp4 option once

Jakob Bornecrantz wallbraker at kemper.freedesktop.org
Fri Aug 6 00:45:14 UTC 2010


Module: Mesa
Branch: master
Commit: 99611f08497f1567a50ef3e7ea51e63fdf4beb26
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=99611f08497f1567a50ef3e7ea51e63fdf4beb26

Author: Jakob Bornecrantz <jakob at vmware.com>
Date:   Thu Aug  5 17:13:41 2010 -0700

st/mesa: Only get mesa mvp dp4 option once

The correct for this is of course to do what comment says

---

 src/mesa/state_tracker/st_context.c |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/src/mesa/state_tracker/st_context.c b/src/mesa/state_tracker/st_context.c
index 820f584..3eb4708 100644
--- a/src/mesa/state_tracker/st_context.c
+++ b/src/mesa/state_tracker/st_context.c
@@ -63,6 +63,9 @@
 #include "cso_cache/cso_context.h"
 
 
+DEBUG_GET_ONCE_BOOL_OPTION(mesa_mvp_dp4, "MESA_MVP_DP4", FALSE);
+
+
 /**
  * Called via ctx->Driver.UpdateState()
  */
@@ -170,7 +173,7 @@ struct st_context *st_create_context(gl_api api, struct pipe_context *pipe,
    /* XXX: need a capability bit in gallium to query if the pipe
     * driver prefers DP4 or MUL/MAD for vertex transformation.
     */
-   if (debug_get_bool_option("MESA_MVP_DP4", FALSE))
+   if (debug_get_option_mesa_mvp_dp4())
       _mesa_set_mvp_with_dp4( ctx, GL_TRUE );
 
    return st_create_context_priv(ctx, pipe);




More information about the mesa-commit mailing list