summaryrefslogtreecommitdiff
path: root/src/mesa/main/attrib.c
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2009-02-27 22:01:40 -0700
committerBrian Paul <brianp@vmware.com>2009-02-28 09:35:15 -0700
commit7f25d9ebb4856273c46ea4bbba4152b85f610a91 (patch)
tree2b43f5cbf95886cdf523dfd27d7c2430bba79e4b /src/mesa/main/attrib.c
parent55399c29511a47bd52c39862a246f29e6f35c3cf (diff)
mesa: move gl_attrib_node struct to attrib.c too
Diffstat (limited to 'src/mesa/main/attrib.c')
-rw-r--r--src/mesa/main/attrib.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/mesa/main/attrib.c b/src/mesa/main/attrib.c
index baad214263..de27917709 100644
--- a/src/mesa/main/attrib.c
+++ b/src/mesa/main/attrib.c
@@ -143,6 +143,18 @@ struct gl_enable_attrib
/**
+ * Node for the attribute stack.
+ */
+struct gl_attrib_node
+{
+ GLbitfield kind;
+ void *data;
+ struct gl_attrib_node *next;
+};
+
+
+
+/**
* Special struct for saving/restoring texture state (GL_TEXTURE_BIT)
*/
struct texture_state