diff options
author | Keith Whitwell <[email protected]> | 2003-08-05 18:55:49 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2003-08-05 18:55:49 +0000 |
commit | ff56908e09c0351179478deb19677cf56eec1f64 (patch) | |
tree | ca51e376173869a8cb44304a0105b237f1dafce9 /src/mesa/tnl/t_context.h | |
parent | e6dea091c0a1fe9ad9720c07ddf7164e5fc45ac6 (diff) |
Store material attributes in an Attrib[] style array. This is a
first step to reviving/rescuing the 'vtx' rework from the old mesa
tree.
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 943082d99be..c375a5670bc 100644 --- a/src/mesa/tnl/t_context.h +++ b/src/mesa/tnl/t_context.h @@ -223,7 +223,7 @@ struct immediate /* allocate storage for these on demand: */ - struct gl_material (*Material)[2]; + struct gl_material *Material; GLuint *MaterialMask; GLuint LastMaterial; GLuint MaterialOrMask; @@ -302,7 +302,7 @@ typedef struct vertex_buffer struct gl_client_array *SecondaryColorPtr[2];/* VERT_BIT_COLOR1 */ GLvector4f *PointSizePtr; /* VERT_BIT_POINT_SIZE */ GLvector4f *FogCoordPtr; /* VERT_BIT_FOG */ - struct gl_material (*Material)[2]; /* VERT_BIT_MATERIAL, optional */ + struct gl_material *Material; /* VERT_BIT_MATERIAL, optional */ GLuint *MaterialMask; /* VERT_BIT_MATERIAL, optional */ GLuint *Flag; /* VERT_BIT_* flags, optional */ GLuint *Primitive; /* GL_(mode)|PRIM_* flags */ |