Browse Source

print debug message when SSE is disabled by user (Klaus Neiderkrueger)

tags/vtx-0-2-21112003-freeze
Brian Paul 23 years ago
parent
commit
c0f1a69a96
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      src/mesa/x86/common_x86.c

+ 2
- 1
src/mesa/x86/common_x86.c View File

@@ -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);
}
}

Loading…
Cancel
Save