summaryrefslogtreecommitdiff
path: root/src/mesa/main/mtypes.h
diff options
context:
space:
mode:
authorBrian <brianp@vmware.com>2009-01-31 12:10:41 -0700
committerBrian <brianp@vmware.com>2009-01-31 12:11:40 -0700
commit0001deef1108b77cf4879fff4647401fb68c421e (patch)
tree26a4082cd4ec783e8c22bb3dd5a67f7bd2aceeb4 /src/mesa/main/mtypes.h
parent446abc2799a143c32c4c48472f3f964f9288a623 (diff)
mesa: more display list cleanups
Remove some unneeded fields. Rename some function parameters.
Diffstat (limited to 'src/mesa/main/mtypes.h')
-rw-r--r--src/mesa/main/mtypes.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h
index f6e4724588..17dd3e6afd 100644
--- a/src/mesa/main/mtypes.h
+++ b/src/mesa/main/mtypes.h
@@ -2886,9 +2886,8 @@ struct gl_tnl_module
*/
#define DLIST_DANGLING_REFS 0x1
-/*
- * Forward declaration of display list data types:
- */
+
+/** Opaque declaration of display list payload data type */
union gl_dlist_node;
@@ -2913,9 +2912,7 @@ struct gl_dlist_state
{
GLuint CallDepth; /**< Current recursion calling depth */
- struct gl_display_list *CurrentList;
- GLuint CurrentListNum; /**< Number of the list being compiled */
- union gl_dlist_node *CurrentListPtr; /**< Head of list being compiled */
+ struct gl_display_list *CurrentList; /**< List currently being compiled */
union gl_dlist_node *CurrentBlock; /**< Pointer to current block of nodes */
GLuint CurrentPos; /**< Index into current block of nodes */