diff options
author | Brian Paul <[email protected]> | 2009-02-11 13:52:17 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-02-11 13:52:17 -0700 |
commit | 2218592d47b963791105f5b8fa1a0b3f3a07f674 (patch) | |
tree | c7a10c524f2c2242e64cbe8f90697b6fae43fa8d /src/mesa/math/m_xform.c | |
parent | c5bae14245192e83e7a91a6b72dc8451dd76f8ef (diff) |
mesa: get rid of _math_init()
Only VBO uses the evaluator code so call _math_init_eval() there.
Only TNL uses the transform/translate code so call _math_init_transformation()
and _math_init_translate9) there.
This is a step toward resolving some symbol collisions between Mesa's and
gallium's x86 codegen.
Have VBO and TNL modules call _math_init_transformation()
Diffstat (limited to 'src/mesa/math/m_xform.c')
-rw-r--r-- | src/mesa/math/m_xform.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/mesa/math/m_xform.c b/src/mesa/math/m_xform.c index 901ae5b416a..fdc8abd4340 100644 --- a/src/mesa/math/m_xform.c +++ b/src/mesa/math/m_xform.c @@ -220,11 +220,3 @@ _math_init_transformation( void ) _mesa_init_all_x86_64_transform_asm(); #endif } - -void -_math_init( void ) -{ - _math_init_transformation(); - _math_init_translate(); - _math_init_eval(); -} |