summaryrefslogtreecommitdiff
path: root/src/mesa/x86/common_x86.c
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2004-01-09 17:14:22 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2004-01-09 17:14:22 +0000
commitbd09d49eb4c6b7e14b7ba68d83fd556976724fa5 (patch)
treec179d0e20e11f0267d48fa7149905111716da286 /src/mesa/x86/common_x86.c
parented98b867af836d7b87529716e95bc611a5695d4d (diff)
re-enable SSE code, except for the _mesa_sse_transform_points4_identity() function. Use the x86 version instead
Diffstat (limited to 'src/mesa/x86/common_x86.c')
-rw-r--r--src/mesa/x86/common_x86.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/mesa/x86/common_x86.c b/src/mesa/x86/common_x86.c
index 6afc164566..2fab022cdf 100644
--- a/src/mesa/x86/common_x86.c
+++ b/src/mesa/x86/common_x86.c
@@ -354,13 +354,11 @@ void _mesa_init_all_x86_transform_asm( void )
check_os_sse_support();
}
if ( cpu_has_xmm ) {
- /* SSE segfaults when running conform, disabled for now - KW.
- */
- if ( 0 && getenv( "MESA_NO_SSE" ) == 0 ) {
+ if (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);
}
}