mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-03-05 14:30:30 +01:00
gallium: use SSE by default
This commit is contained in:
parent
6cdcebe801
commit
de7e51ff98
2 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue