From f8e4cf716a3656faa08086ee80d04b36a5266d65 Mon Sep 17 00:00:00 2001 From: Brian Date: Fri, 24 Aug 2007 08:43:58 +0100 Subject: remove CallDepth++/-- accidentally removed in prev commit --- src/mesa/main/dlist.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/mesa') diff --git a/src/mesa/main/dlist.c b/src/mesa/main/dlist.c index 5b9391096a..b881b12ff3 100644 --- a/src/mesa/main/dlist.c +++ b/src/mesa/main/dlist.c @@ -5737,6 +5737,8 @@ execute_list(GLcontext *ctx, GLuint list) if (!dlist) return; + ctx->ListState.CallDepth++; + if (ctx->Driver.BeginCallList) ctx->Driver.BeginCallList(ctx, dlist); @@ -6623,6 +6625,8 @@ execute_list(GLcontext *ctx, GLuint list) if (ctx->Driver.EndCallList) ctx->Driver.EndCallList(ctx); + + ctx->ListState.CallDepth--; } -- cgit v1.2.3