projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4f615d7
)
print debug message when SSE is disabled by user (Klaus Neiderkrueger)
author
Brian Paul
<brian.paul@tungstengraphics.com>
Tue, 4 Feb 2003 02:22:51 +0000
(
02:22
+0000)
committer
Brian Paul
<brian.paul@tungstengraphics.com>
Tue, 4 Feb 2003 02:22:51 +0000
(
02:22
+0000)
src/mesa/x86/common_x86.c
patch
|
blob
|
history
diff --git
a/src/mesa/x86/common_x86.c
b/src/mesa/x86/common_x86.c
index f22cd18b341882e72715a9dd45e61683f505d2c7..da572dfbf0ab2dbf7de36eac74934fed520fcf32 100644
(file)
--- a/
src/mesa/x86/common_x86.c
+++ b/
src/mesa/x86/common_x86.c
@@
-1,4
+1,4
@@
-/* $Id: common_x86.c,v 1.2
1 2003/01/21 16:13:55
brianp Exp $ */
+/* $Id: common_x86.c,v 1.2
2 2003/02/04 02:22:51
brianp Exp $ */
/*
* Mesa 3-D graphics library
@@
-362,6
+362,7
@@
void _mesa_init_all_x86_transform_asm( void )
message( "SSE cpu detected.\n" );
_mesa_init_sse_transform_asm();
} else {
+ message( "SSE cpu detected, but switched off by user.\n" );
_mesa_x86_cpu_features &= ~(X86_FEATURE_XMM);
}
}