diff options
author | Brian Paul <[email protected]> | 2003-02-04 02:22:51 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2003-02-04 02:22:51 +0000 |
commit | c0f1a69a96e0101d4e49028333e2984fd650c0c8 (patch) | |
tree | edca994955fdf84a30e97626f3a007efe3a09819 /src/mesa/x86/common_x86.c | |
parent | 4f615d7fa3a863de803a1ec9731e128d9594337d (diff) |
print debug message when SSE is disabled by user (Klaus Neiderkrueger)
Diffstat (limited to 'src/mesa/x86/common_x86.c')
-rw-r--r-- | src/mesa/x86/common_x86.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/x86/common_x86.c b/src/mesa/x86/common_x86.c index f22cd18b341..da572dfbf0a 100644 --- a/src/mesa/x86/common_x86.c +++ b/src/mesa/x86/common_x86.c @@ -1,4 +1,4 @@ -/* $Id: common_x86.c,v 1.21 2003/01/21 16:13:55 brianp Exp $ */ +/* $Id: common_x86.c,v 1.22 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); } } |