summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/draw
diff options
context:
space:
mode:
authorJosé Fonseca <jrfonseca@tungstengraphics.com>2007-12-05 15:28:39 +0000
committerJosé Fonseca <jrfonseca@tungstengraphics.com>2007-12-09 14:06:01 +0000
commitde7e51ff9854605cd0bbbe5829d6d987ea0a5fca (patch)
tree8548f3d31a17d002a6676ff65492182fe3d2056b /src/mesa/pipe/draw
parent6cdcebe8017b56e2f823dd3f6d805e55056f7e9b (diff)
gallium: use SSE by default
Diffstat (limited to 'src/mesa/pipe/draw')
-rw-r--r--src/mesa/pipe/draw/draw_context.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/pipe/draw/draw_context.c b/src/mesa/pipe/draw/draw_context.c
index d438c0be10..6792a06a4e 100644
--- a/src/mesa/pipe/draw/draw_context.c
+++ b/src/mesa/pipe/draw/draw_context.c
@@ -42,7 +42,7 @@ struct draw_context *draw_create( void )
struct draw_context *draw = CALLOC_STRUCT( draw_context );
#if defined(__i386__) || defined(__386__)
- draw->use_sse = GETENV( "GALLIUM_SSE" ) != NULL;
+ draw->use_sse = GETENV( "GALLIUM_NOSSE" ) == NULL;
#else
draw->use_sse = FALSE;
#endif