mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-06-19 08:28:21 +02:00
SSE segfaults in conform - disable for now.
This commit is contained in:
parent
38bf45d4bb
commit
20caac0967
1 changed files with 2 additions and 2 deletions
|
|
@ -354,11 +354,11 @@ void _mesa_init_all_x86_transform_asm( void )
|
|||
check_os_sse_support();
|
||||
}
|
||||
if ( cpu_has_xmm ) {
|
||||
if ( getenv( "MESA_NO_SSE" ) == 0 ) {
|
||||
if ( 0 && getenv( "MESA_NO_SSE" ) == 0 ) {
|
||||
message( "SSE cpu detected.\n" );
|
||||
_mesa_init_sse_transform_asm();
|
||||
} else {
|
||||
message( "SSE cpu detected, but switched off by user.\n" );
|
||||
/* message( "SSE cpu detected, but switched off by user.\n" ); */
|
||||
_mesa_x86_cpu_features &= ~(X86_FEATURE_XMM);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue