diff options
author | José Fonseca <jrfonseca@tungstengraphics.com> | 2008-01-29 09:42:03 +0900 |
---|---|---|
committer | José Fonseca <jrfonseca@tungstengraphics.com> | 2008-01-29 09:42:03 +0900 |
commit | 1cc0b0dda7eaf6bdf891d6915b36e7b2ff41133c (patch) | |
tree | 2c479e52ad49817ab18b12a4e1dba74e2ef716f3 | |
parent | 93d727eea75812ecb21706804033a33d2e761eb8 (diff) |
gallium: Use GALLIUM_ prefix for env vars.
-rw-r--r-- | src/mesa/pipe/draw/draw_vf.c | 2 |
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 |