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/vbo/vbo_context.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/vbo/vbo_context.c')
-rw-r--r-- | src/mesa/vbo/vbo_context.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/vbo/vbo_context.c b/src/mesa/vbo/vbo_context.c index 467ab4e3e55..ca8190fd059 100644 --- a/src/mesa/vbo/vbo_context.c +++ b/src/mesa/vbo/vbo_context.c @@ -28,6 +28,7 @@ #include "main/imports.h" #include "main/mtypes.h" #include "main/api_arrayelt.h" +#include "math/m_eval.h" #include "vbo.h" #include "vbo_context.h" @@ -230,6 +231,8 @@ GLboolean _vbo_CreateContext( GLcontext *ctx ) vbo_save_init( ctx ); #endif + _math_init_eval(); + return GL_TRUE; } |