diff options
author | Keith Whitwell <[email protected]> | 2006-10-29 09:48:15 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2006-10-29 09:48:15 +0000 |
commit | b1f176039ae3690b38e3ccacb079b3d7c3e50402 (patch) | |
tree | 045b13f38d0eb538f69a2fe1005262e2f483c76f /src/mesa/tnl/t_vb_rendertmp.h | |
parent | fd12b37dbada6f945a94b93ecf332d0b6a8eef06 (diff) |
Changes for new vbo-building module.
- Removed all the old immediate, array and display list code.
- Remove references to the old array_cache module.
- Added a _tnl_draw_prims() entrypoint.
- Added a simplified data import facility for converting
non-floating point data as required.
Checkpoint commit - trivial/tri works.
Diffstat (limited to 'src/mesa/tnl/t_vb_rendertmp.h')
-rw-r--r-- | src/mesa/tnl/t_vb_rendertmp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/tnl/t_vb_rendertmp.h b/src/mesa/tnl/t_vb_rendertmp.h index 90319eddfc5..2b5f4e93b22 100644 --- a/src/mesa/tnl/t_vb_rendertmp.h +++ b/src/mesa/tnl/t_vb_rendertmp.h @@ -45,8 +45,8 @@ #endif #ifndef TEST_PRIM_END -#define TEST_PRIM_END(flags) (flags & PRIM_END) -#define TEST_PRIM_BEGIN(flags) (flags & PRIM_BEGIN) +#define TEST_PRIM_END(prim) (flags & PRIM_END) +#define TEST_PRIM_BEGIN(prim) (flags & PRIM_BEGIN) #endif #ifndef ELT |