diff options
author | Brian Paul <[email protected]> | 2009-03-04 15:44:38 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-03-04 15:44:38 -0700 |
commit | 8538f64d0929715cb22a44186598471342c258c6 (patch) | |
tree | c1703a646e5544c67ba7e21723d79a225947bc7a /src/mesa/x86 | |
parent | 81e366c65949292ab9a70e518ab5487e639db255 (diff) |
mesa: make _mesa_init_x86_transform_asm() static
Diffstat (limited to 'src/mesa/x86')
-rw-r--r-- | src/mesa/x86/x86.h | 2 | ||||
-rw-r--r-- | 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 97651ec6ee4..9ca17f05a04 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 b2f54b2ce67..9574ee5e1fd 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 ); |