Module: Mesa Branch: master Commit: 8538f64d0929715cb22a44186598471342c258c6 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=8538f64d0929715cb22a44186598471342c258c6
Author: Brian Paul <[email protected]> Date: Wed Mar 4 15:44:38 2009 -0700 mesa: make _mesa_init_x86_transform_asm() static --- src/mesa/x86/x86.h | 2 +- src/mesa/x86/x86_xform.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mesa/x86/x86.h b/src/mesa/x86/x86.h index 97651ec..9ca17f0 100644 --- a/src/mesa/x86/x86.h +++ b/src/mesa/x86/x86.h @@ -30,6 +30,6 @@ #ifndef __X86_H__ #define __X86_H__ -extern void _mesa_init_x86_transform_asm( void ); +/*extern void _mesa_init_x86_transform_asm( void );*/ #endif diff --git a/src/mesa/x86/x86_xform.c b/src/mesa/x86/x86_xform.c index b2f54b2..9574ee5 100644 --- a/src/mesa/x86/x86_xform.c +++ b/src/mesa/x86/x86_xform.c @@ -77,7 +77,7 @@ _mesa_v16_x86_general_xform( GLfloat *dest, #endif -void _mesa_init_x86_transform_asm( void ) +static void _mesa_init_x86_transform_asm( void ) { #ifdef USE_X86_ASM ASSIGN_XFORM_GROUP( x86, 2 ); _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
