summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJosé Fonseca <jrfonseca@tungstengraphics.com>2008-01-29 09:42:03 +0900
committerJosé Fonseca <jrfonseca@tungstengraphics.com>2008-01-29 09:42:03 +0900
commit1cc0b0dda7eaf6bdf891d6915b36e7b2ff41133c (patch)
tree2c479e52ad49817ab18b12a4e1dba74e2ef716f3 /src
parent93d727eea75812ecb21706804033a33d2e761eb8 (diff)
gallium: Use GALLIUM_ prefix for env vars.
Diffstat (limited to 'src')
-rw-r--r--src/mesa/pipe/draw/draw_vf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/pipe/draw/draw_vf.c b/src/mesa/pipe/draw/draw_vf.c
index d36f6293b1..4fc2312ad1 100644
--- a/src/mesa/pipe/draw/draw_vf.c
+++ b/src/mesa/pipe/draw/draw_vf.c
@@ -275,7 +275,7 @@ struct draw_vertex_fetch *draw_vf_create( void )
vf->codegen_emit = NULL;
#ifdef USE_SSE_ASM
- if (!GETENV("MESA_NO_CODEGEN"))
+ if (!GETENV("GALLIUM_NO_CODEGEN"))
vf->codegen_emit = draw_vf_generate_sse_emit;
#endif