diff options
author | Keith Whitwell <[email protected]> | 2004-07-01 13:14:05 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2004-07-01 13:14:05 +0000 |
commit | 3d38361b718d490e1e7fda64519952ec887cd149 (patch) | |
tree | cb4aa9e3da58210f0ef4f4e6172b9b78892cc30a /src/mesa/tnl/t_vtx_x86.c | |
parent | c3c8c71846fb507b57282128d53ba9666e66fe03 (diff) |
Rename the various function types in t_context.h to include a tnl_ prefix.
Diffstat (limited to 'src/mesa/tnl/t_vtx_x86.c')
-rw-r--r-- | src/mesa/tnl/t_vtx_x86.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mesa/tnl/t_vtx_x86.c b/src/mesa/tnl/t_vtx_x86.c index 53265d23759..59a869879a5 100644 --- a/src/mesa/tnl/t_vtx_x86.c +++ b/src/mesa/tnl/t_vtx_x86.c @@ -337,8 +337,8 @@ void _tnl_x86_exec_vtxfmt_init( GLcontext *ctx ) /* Install the codegen'ed choosers. * We should keep a list and free them in the end... */ -void _tnl_x86choosers( attrfv_func (*choose)[4], - attrfv_func (*do_choose)( GLuint attr, +void _tnl_x86choosers( tnl_attrfv_func (*choose)[4], + tnl_attrfv_func (*do_choose)( GLuint attr, GLuint sz )) { int attr, size; @@ -354,7 +354,7 @@ void _tnl_x86choosers( attrfv_func (*choose)[4], FIXUP(code, 0, 0, attr); FIXUP(code, 0, 1, size + 1); FIXUPREL(code, 0, 2, do_choose); - choose[attr][size] = (attrfv_func)code; + choose[attr][size] = (tnl_attrfv_func)code; } } } @@ -373,8 +373,8 @@ void _tnl_x86_exec_vtxfmt_init( GLcontext *ctx ) } -void _tnl_x86choosers( attrfv_func (*choose)[4], - attrfv_func (*do_choose)( GLuint attr, +void _tnl_x86choosers( tnl_attrfv_func (*choose)[4], + tnl_attrfv_func (*do_choose)( GLuint attr, GLuint sz )) { (void) choose; |