summaryrefslogtreecommitdiff
path: root/src/mesa/x86/common_x86.c
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2001-03-05 15:57:59 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2001-03-05 15:57:59 +0000
commita11c0bcf97b00c93dbb156523ace86b9b19b74ba (patch)
tree5ffd0479670671f07fff17e5194401233d5a3289 /src/mesa/x86/common_x86.c
parent865322f931197c5c73c57b366b64300894565dab (diff)
replaced gl_test_os_katmai*() with _mesa_test_os_katmai*()
Diffstat (limited to 'src/mesa/x86/common_x86.c')
-rw-r--r--src/mesa/x86/common_x86.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mesa/x86/common_x86.c b/src/mesa/x86/common_x86.c
index 47c1821f7a..25164a6f02 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.11 2001/03/03 21:11:32 brianp Exp $ */
+/* $Id: common_x86.c,v 1.12 2001/03/05 15:57:59 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -85,8 +85,8 @@ static void message( const char *msg )
* not good.
*/
-extern void gl_test_os_katmai_support( void );
-extern void gl_test_os_katmai_exception_support( void );
+extern void _mesa_test_os_katmai_support( void );
+extern void _mesa_test_os_katmai_exception_support( void );
#if defined(__linux__) && defined(_POSIX_SOURCE)
static void sigill_handler( int signal, struct sigcontext sc )
@@ -160,7 +160,7 @@ static void check_os_katmai_support( void )
if ( cpu_has_xmm ) {
message( "Testing OS support for SSE... " );
- gl_test_os_katmai_support();
+ _mesa_test_os_katmai_support();
if ( cpu_has_xmm ) {
message( "yes.\n" );
@@ -185,7 +185,7 @@ static void check_os_katmai_support( void )
if ( cpu_has_xmm ) {
message( "Testing OS support for SSE unmasked exceptions... " );
- gl_test_os_katmai_exception_support();
+ _mesa_test_os_katmai_exception_support();
if ( cpu_has_xmm ) {
message( "yes.\n" );