summaryrefslogtreecommitdiff
path: root/src/mesa/tnl/t_vtx_api.c
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2004-03-31 06:36:30 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2004-03-31 06:36:30 +0000
commitb48c575983dcd6bbffa3925565d45cadbb95fae2 (patch)
tree246817e050005267a5669196aec779cb69e4b705 /src/mesa/tnl/t_vtx_api.c
parent3e280b3fe7e295b063c7985273c0623a4a2e22bd (diff)
dynfn --> _tnl_dynfn
Diffstat (limited to 'src/mesa/tnl/t_vtx_api.c')
-rw-r--r--src/mesa/tnl/t_vtx_api.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mesa/tnl/t_vtx_api.c b/src/mesa/tnl/t_vtx_api.c
index 1756617f5c..6dcd8b43a0 100644
--- a/src/mesa/tnl/t_vtx_api.c
+++ b/src/mesa/tnl/t_vtx_api.c
@@ -330,9 +330,9 @@ static void _tnl_fixup_vertex( GLcontext *ctx, GLuint attr, GLuint sz )
}
-static struct dynfn *lookup( struct dynfn *l, GLuint key )
+static struct _tnl_dynfn *lookup( struct _tnl_dynfn *l, GLuint key )
{
- struct dynfn *f;
+ struct _tnl_dynfn *f;
foreach( f, l ) {
if (f->key == key)
@@ -346,7 +346,7 @@ static struct dynfn *lookup( struct dynfn *l, GLuint key )
static attrfv_func do_codegen( GLcontext *ctx, GLuint attr, GLuint sz )
{
TNLcontext *tnl = TNL_CONTEXT(ctx);
- struct dynfn *dfn = 0;
+ struct _tnl_dynfn *dfn = 0;
if (attr == 0) {
GLuint key = tnl->vtx.vertex_size;
@@ -846,7 +846,7 @@ static void _tnl_current_init( GLcontext *ctx )
tnl->vtx.current[_TNL_ATTRIB_INDEX] = &ctx->Current.Index;
}
-static struct dynfn *no_codegen( GLcontext *ctx, int key )
+static struct _tnl_dynfn *no_codegen( GLcontext *ctx, int key )
{
return 0;
}
@@ -913,9 +913,9 @@ void _tnl_vtx_init( GLcontext *ctx )
tnl->vtx.have_materials = 0;
}
-static void free_funcs( struct dynfn *l )
+static void free_funcs( struct _tnl_dynfn *l )
{
- struct dynfn *f, *tmp;
+ struct _tnl_dynfn *f, *tmp;
foreach_s (f, tmp, l) {
remove_from_list( f );
ALIGN_FREE( f->code );