summaryrefslogtreecommitdiff
path: root/src/mesa/main/mtypes.h
diff options
context:
space:
mode:
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 */