diff options
author | Keith Whitwell <keith@tungstengraphics.com> | 2005-01-05 12:58:14 +0000 |
---|---|---|
committer | Keith Whitwell <keith@tungstengraphics.com> | 2005-01-05 12:58:14 +0000 |
commit | 9a8a9fb01fa5beeb843415277b48b086b099aa97 (patch) | |
tree | ffc3bfb12523f16fcf14867cddd1b1cd398409d4 /src/mesa/tnl/t_context.h | |
parent | d5b1605449b3a29c02ee74e042a0a32720f3561a (diff) |
Add a couple of hardwired fastpaths to t_vertex.c.
Diffstat (limited to 'src/mesa/tnl/t_context.h')
-rw-r--r-- | src/mesa/tnl/t_context.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/tnl/t_context.h b/src/mesa/tnl/t_context.h index 47e71c38be..41f9445f97 100644 --- a/src/mesa/tnl/t_context.h +++ b/src/mesa/tnl/t_context.h @@ -536,8 +536,8 @@ typedef void (*tnl_insert_func)( const struct tnl_clipspace_attr *a, const GLfloat *in ); typedef void (*tnl_emit_func)( GLcontext *ctx, - GLuint start, - GLuint end, void *dest ); + GLuint count, + GLubyte *dest ); /** |