From d9aebd84980c58df9767f2b01fc7b8ec7620b161 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Wed, 6 Sep 2006 05:03:47 +0000 Subject: [PATCH] for VERTEX_ATTRIB_WEIGHT, use break, not return --- src/mesa/shader/arbprogparse.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/mesa/shader/arbprogparse.c b/src/mesa/shader/arbprogparse.c index 6c6ec0736c5..b8e5e4bd8ae 100644 --- a/src/mesa/shader/arbprogparse.c +++ b/src/mesa/shader/arbprogparse.c @@ -1494,12 +1494,13 @@ parse_attrib_binding(GLcontext * ctx, const GLubyte ** inst, #if 1 /* hack for Warcraft (see bug 8060) */ _mesa_warning(ctx, "Application error: vertex program uses 'vertex.weight' but GL_ARB_vertex_blend not supported."); + break; #else program_error(ctx, Program->Position, "ARB_vertex_blend not supported"); + return 1; #endif } - return 1; case VERTEX_ATTRIB_NORMAL: *inputReg = VERT_ATTRIB_NORMAL; -- 2.30.2