diff options
author | Brian Paul <[email protected]> | 2006-06-13 03:29:02 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2006-06-13 03:29:02 +0000 |
commit | bd1e587ebe053b5a6d3b8cc3597b226d670f4667 (patch) | |
tree | 8221a1f316433f44392ea8e6a262f93d915e42cf /src/mesa/tnl/t_vb_program.c | |
parent | 0395cc01fdb6ffa638df939e0f7d9d02c34761f9 (diff) |
remove some unneeded #includes
Diffstat (limited to 'src/mesa/tnl/t_vb_program.c')
-rw-r--r-- | src/mesa/tnl/t_vb_program.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mesa/tnl/t_vb_program.c b/src/mesa/tnl/t_vb_program.c index 7a98db85fdc..131f5ffa577 100644 --- a/src/mesa/tnl/t_vb_program.c +++ b/src/mesa/tnl/t_vb_program.c @@ -45,8 +45,6 @@ #include "nvvertexec.h" #include "nvprogram.h" -#include "math/m_translate.h" - #include "t_context.h" #include "t_pipeline.h" @@ -231,6 +229,7 @@ static GLboolean init_vp( GLcontext *ctx, return GL_FALSE; /* Allocate arrays of vertex output values */ + /* XXX change '15' to a named constant */ for (i = 0; i < 15; i++) { _mesa_vector4f_alloc( &store->attribs[i], 0, size, 32 ); store->attribs[i].size = 4; |