From 4bae9a48ecec6d2428b43989d7266e22ceb1a614 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Fri, 25 Aug 2006 15:44:09 +0000 Subject: In _save_End(), set CurrentExecPrimitive = PRIM_OUTSIDE_BEGIN_END if we're in GL_COMPILE_AND_EXECUTE mode. This fixes bug 7984. --- src/mesa/tnl/t_save_api.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/mesa') diff --git a/src/mesa/tnl/t_save_api.c b/src/mesa/tnl/t_save_api.c index e9c0b0daf6..11d21301d9 100644 --- a/src/mesa/tnl/t_save_api.c +++ b/src/mesa/tnl/t_save_api.c @@ -1305,6 +1305,9 @@ static void GLAPIENTRY _save_End( void ) GLint i = tnl->save.prim_count - 1; ctx->Driver.CurrentSavePrimitive = PRIM_OUTSIDE_BEGIN_END; + if (ctx->ExecuteFlag) + ctx->Driver.CurrentExecPrimitive = PRIM_OUTSIDE_BEGIN_END; + tnl->save.prim[i].mode |= PRIM_END; tnl->save.prim[i].count = ((tnl->save.initial_counter - tnl->save.counter) - tnl->save.prim[i].start); -- cgit v1.2.3