dynfn --> _tnl_dynfn
authorKeith Whitwell <keith@tungstengraphics.com>
Wed, 31 Mar 2004 06:36:30 +0000 (06:36 +0000)
committerKeith Whitwell <keith@tungstengraphics.com>
Wed, 31 Mar 2004 06:36:30 +0000 (06:36 +0000)
src/mesa/tnl/t_context.h
src/mesa/tnl/t_vtx_api.c
src/mesa/tnl/t_vtx_api.h
src/mesa/tnl/t_vtx_x86.c

index ec5675faf915270e8bb14664717a91348f21f7b6..d20f126c5d5ba7968adbd02b9e1f0b18f965cff2 100644 (file)
@@ -251,20 +251,20 @@ struct tnl_copied_vtx {
 
 typedef void (*attrfv_func)( const GLfloat * );
 
-struct dynfn {
-   struct dynfn *next, *prev;
+struct _tnl_dynfn {
+   struct _tnl_dynfn *next, *prev;
    int key;
    char *code;
 };
 
-struct dynfn_lists {
-   struct dynfn Vertex[4];
-   struct dynfn Attribute[4];
+struct _tnl_dynfn_lists {
+   struct _tnl_dynfn Vertex[4];
+   struct _tnl_dynfn Attribute[4];
 };
 
-struct dynfn_generators {
-   struct dynfn *(*Vertex[4])( GLcontext *ctx, int key );
-   struct dynfn *(*Attribute[4])( GLcontext *ctx, int key );
+struct _tnl_dynfn_generators {
+   struct _tnl_dynfn *(*Vertex[4])( GLcontext *ctx, int key );
+   struct _tnl_dynfn *(*Attribute[4])( GLcontext *ctx, int key );
 };
 
 #define _TNL_MAX_ATTR_CODEGEN 16 
@@ -290,8 +290,8 @@ struct tnl_vtx {
 
    attrfv_func tabfv[_TNL_MAX_ATTR_CODEGEN+1][4]; /* plus 1 for ERROR_ATTRIB */
 
-   struct dynfn_lists cache;
-   struct dynfn_generators gen;
+   struct _tnl_dynfn_lists cache;
+   struct _tnl_dynfn_generators gen;
 
    struct tnl_eval eval;
    GLboolean *edgeflag_tmp;
index 1756617f5c88a2a553af3d34265dd301fca6a58a..6dcd8b43a0bdf0d304f11dcb49d9958c427bcb35 100644 (file)
@@ -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 );
index 5e4ab71a08b6a50ae0e4f6d09e0411c0e65addfd..85cc33f0718b69ec5933a1ea93f272e3a6dff9de 100644 (file)
@@ -76,7 +76,7 @@ extern void _tnl_generic_attr_table_init( attrfv_func (*tab)[4] );
 
 /* t_vtx_x86.c:
  */
-extern void _tnl_InitX86Codegen( struct dynfn_generators *gen );
+extern void _tnl_InitX86Codegen( struct _tnl_dynfn_generators *gen );
 
 
 
index 90a6bd06d4e241c814c16aaf701a3781cefc7c76..d082ef82bb59c28e31e6170b80ef8620e71ead7f 100644 (file)
@@ -79,7 +79,7 @@ static void notify( void )
 
 
 #define DFN( FUNC, CACHE, KEY )                                \
-   struct dynfn *dfn = MALLOC_STRUCT( dynfn );          \
+   struct _tnl_dynfn *dfn = MALLOC_STRUCT( _tnl_dynfn );          \
    char *start = (char *)&FUNC;                                \
    char *end = (char *)&FUNC##_end;                    \
    int offset = 0;                                     \
@@ -114,7 +114,7 @@ do {                                                        \
  * the current state.  Generic x86 versions.
  */
 
-static struct dynfn *makeX86Vertex1fv( GLcontext *ctx, int vertex_size )
+static struct _tnl_dynfn *makeX86Vertex1fv( GLcontext *ctx, int vertex_size )
 {
    TNLcontext *tnl = TNL_CONTEXT(ctx);
    DFN ( _x86_Vertex1fv, tnl->vtx.cache.Vertex[1-1], vertex_size );
@@ -130,7 +130,7 @@ static struct dynfn *makeX86Vertex1fv( GLcontext *ctx, int vertex_size )
    return dfn;
 }
 
-static struct dynfn *makeX86Vertex2fv( GLcontext *ctx, int vertex_size )
+static struct _tnl_dynfn *makeX86Vertex2fv( GLcontext *ctx, int vertex_size )
 {
    TNLcontext *tnl = TNL_CONTEXT(ctx);
    DFN ( _x86_Vertex2fv, tnl->vtx.cache.Vertex[2-1], vertex_size );
@@ -146,7 +146,7 @@ static struct dynfn *makeX86Vertex2fv( GLcontext *ctx, int vertex_size )
    return dfn;
 }
 
-static struct dynfn *makeX86Vertex3fv( GLcontext *ctx, int vertex_size )
+static struct _tnl_dynfn *makeX86Vertex3fv( GLcontext *ctx, int vertex_size )
 {
    TNLcontext *tnl = TNL_CONTEXT(ctx);
    DFN ( _x86_Vertex3fv, tnl->vtx.cache.Vertex[3-1], vertex_size );
@@ -161,7 +161,7 @@ static struct dynfn *makeX86Vertex3fv( GLcontext *ctx, int vertex_size )
    return dfn;
 }
 
-static struct dynfn *makeX86Vertex4fv( GLcontext *ctx, int vertex_size )
+static struct _tnl_dynfn *makeX86Vertex4fv( GLcontext *ctx, int vertex_size )
 {
    TNLcontext *tnl = TNL_CONTEXT(ctx);
    DFN ( _x86_Vertex4fv, tnl->vtx.cache.Vertex[4-1], vertex_size );
@@ -178,7 +178,7 @@ static struct dynfn *makeX86Vertex4fv( GLcontext *ctx, int vertex_size )
 }
 
 
-static struct dynfn *makeX86Attribute1fv( GLcontext *ctx, int dest )
+static struct _tnl_dynfn *makeX86Attribute1fv( GLcontext *ctx, int dest )
 {
    TNLcontext *tnl = TNL_CONTEXT(ctx);
    DFN ( _x86_Attribute1fv, tnl->vtx.cache.Attribute[1-1], dest );
@@ -188,7 +188,7 @@ static struct dynfn *makeX86Attribute1fv( GLcontext *ctx, int dest )
    return dfn;
 }
 
-static struct dynfn *makeX86Attribute2fv( GLcontext *ctx, int dest )
+static struct _tnl_dynfn *makeX86Attribute2fv( GLcontext *ctx, int dest )
 {
    TNLcontext *tnl = TNL_CONTEXT(ctx);
    DFN ( _x86_Attribute2fv, tnl->vtx.cache.Attribute[2-1], dest );
@@ -199,7 +199,7 @@ static struct dynfn *makeX86Attribute2fv( GLcontext *ctx, int dest )
    return dfn;
 }
 
-static struct dynfn *makeX86Attribute3fv( GLcontext *ctx, int dest )
+static struct _tnl_dynfn *makeX86Attribute3fv( GLcontext *ctx, int dest )
 {
    TNLcontext *tnl = TNL_CONTEXT(ctx);
    DFN ( _x86_Attribute3fv, tnl->vtx.cache.Attribute[3-1], dest );
@@ -211,7 +211,7 @@ static struct dynfn *makeX86Attribute3fv( GLcontext *ctx, int dest )
    return dfn;
 }
 
-static struct dynfn *makeX86Attribute4fv( GLcontext *ctx, int dest )
+static struct _tnl_dynfn *makeX86Attribute4fv( GLcontext *ctx, int dest )
 {
    TNLcontext *tnl = TNL_CONTEXT(ctx);
    DFN ( _x86_Attribute4fv, tnl->vtx.cache.Attribute[4-1], dest );
@@ -225,7 +225,7 @@ static struct dynfn *makeX86Attribute4fv( GLcontext *ctx, int dest )
 }
 
 
-void _tnl_InitX86Codegen( struct dynfn_generators *gen )
+void _tnl_InitX86Codegen( struct _tnl_dynfn_generators *gen )
 {
    gen->Vertex[0] = makeX86Vertex1fv;
    gen->Vertex[1] = makeX86Vertex2fv;
@@ -243,7 +243,7 @@ void _do_choose( void )
 
 #else 
 
-void _tnl_InitX86Codegen( struct dynfn_generators *gen )
+void _tnl_InitX86Codegen( struct _tnl_dynfn_generators *gen )
 {
    (void) gen;
 }