From: Brian Paul Date: Thu, 8 Jun 2006 23:11:35 +0000 (+0000) Subject: check for invalid mode in glBegin(), bug 7142 X-Git-Tag: 062012170305~20896 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ee7e58e11140e18ebac8dd44f358aa151f1fa880;p=profile%2Fivi%2Fmesa.git check for invalid mode in glBegin(), bug 7142 --- diff --git a/src/mesa/tnl/t_vtx_api.c b/src/mesa/tnl/t_vtx_api.c index ed06889..4765228 100644 --- a/src/mesa/tnl/t_vtx_api.c +++ b/src/mesa/tnl/t_vtx_api.c @@ -740,6 +740,11 @@ static void GLAPIENTRY _tnl_Begin( GLenum mode ) { GET_CURRENT_CONTEXT( ctx ); + if (mode > GL_POLYGON) { + _mesa_error(ctx, GL_INVALID_ENUM, "glBegin(mode)"); + return; + } + if (ctx->Driver.CurrentExecPrimitive == PRIM_OUTSIDE_BEGIN_END) { /* we're not inside a glBegin/End pair */ TNLcontext *tnl = TNL_CONTEXT(ctx);