diff options
author | José Fonseca <jrfonseca@tungstengraphics.com> | 2007-12-05 15:28:39 +0000 |
---|---|---|
committer | José Fonseca <jrfonseca@tungstengraphics.com> | 2007-12-09 14:06:01 +0000 |
commit | de7e51ff9854605cd0bbbe5829d6d987ea0a5fca (patch) | |
tree | 8548f3d31a17d002a6676ff65492182fe3d2056b /src/mesa/pipe/softpipe/sp_context.c | |
parent | 6cdcebe8017b56e2f823dd3f6d805e55056f7e9b (diff) |
gallium: use SSE by default
Diffstat (limited to 'src/mesa/pipe/softpipe/sp_context.c')
-rw-r--r-- | src/mesa/pipe/softpipe/sp_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/pipe/softpipe/sp_context.c b/src/mesa/pipe/softpipe/sp_context.c index df4e0cbd5a..809b165f45 100644 --- a/src/mesa/pipe/softpipe/sp_context.c +++ b/src/mesa/pipe/softpipe/sp_context.c @@ -244,7 +244,7 @@ struct pipe_context *softpipe_create( struct pipe_winsys *pipe_winsys, uint i; #if defined(__i386__) || defined(__386__) - softpipe->use_sse = GETENV( "GALLIUM_SSE" ) != NULL; + softpipe->use_sse = GETENV( "GALLIUM_NOSSE" ) == NULL; #else softpipe->use_sse = FALSE; #endif |