summaryrefslogtreecommitdiff
path: root/src/mesa
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2007-08-23 08:16:52 +0100
committerBrian <brian.paul@tungstengraphics.com>2007-08-23 08:19:31 +0100
commitdbef6158c6c19a28dc96a96357c9ed9bd9422b88 (patch)
treeebf08e3fb2d5fede75ee847d99df21607eda27f5 /src/mesa
parenta3750c989b7330cc08942c9e0959ebfcdfcb9306 (diff)
remove unneeded CallStack array
Diffstat (limited to 'src/mesa')
-rw-r--r--src/mesa/main/dlist.c4
-rw-r--r--src/mesa/main/mtypes.h1
2 files changed, 0 insertions, 5 deletions
diff --git a/src/mesa/main/dlist.c b/src/mesa/main/dlist.c
index be2f438a94..5b9391096a 100644
--- a/src/mesa/main/dlist.c
+++ b/src/mesa/main/dlist.c
@@ -5737,8 +5737,6 @@ execute_list(GLcontext *ctx, GLuint list)
if (!dlist)
return;
- ctx->ListState.CallStack[ctx->ListState.CallDepth++] = dlist;
-
if (ctx->Driver.BeginCallList)
ctx->Driver.BeginCallList(ctx, dlist);
@@ -6625,8 +6623,6 @@ execute_list(GLcontext *ctx, GLuint list)
if (ctx->Driver.EndCallList)
ctx->Driver.EndCallList(ctx);
-
- ctx->ListState.CallStack[ctx->ListState.CallDepth--] = NULL;
}
diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h
index 1145f361b1..f5a8c970e4 100644
--- a/src/mesa/main/mtypes.h
+++ b/src/mesa/main/mtypes.h
@@ -2866,7 +2866,6 @@ struct mesa_display_list
*/
struct gl_dlist_state
{
- struct mesa_display_list *CallStack[MAX_LIST_NESTING];
GLuint CallDepth; /**< Current recursion calling depth */
struct mesa_display_list *CurrentList;