summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbma <Bo.Ma@windriver.com>2013-02-12 08:42:36 +0200
committerIan Romanick <ian.d.romanick@intel.com>2013-02-17 14:20:34 -0800
commitb84d9aa0c661753d486bc87bc22198c5798947a8 (patch)
treecd031549855b01e67ddacdde3b65518430a57bc2
parentbb4b1494e32b85dc5caa777c391b30b3dda5c785 (diff)
shaderapi: Fix AttachShader error
Detect a duplicate Shader type as and error instead of silently allowing it, restrict to ES2 API. v2: Tapani Pälli <tapani.palli@intel.com> - make the check run time instead of compile time v3: chadv - Quote spec on which error to generate. Signed-off-by: bma <Bo.Ma@windriver.com> Signed-off-by: Tapani Pälli <tapani.palli@intel.com> Reviewed-and-tested-by: Chad Versace <chad.versace@linux.intel.com> (cherry picked from commit ce3dfa19ab27871d7eecd5664c1674e467b736bc)
-rw-r--r--src/mesa/main/shaderapi.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/mesa/main/shaderapi.c b/src/mesa/main/shaderapi.c
index 2590abe7ed4..be69467986d 100644
--- a/src/mesa/main/shaderapi.c
+++ b/src/mesa/main/shaderapi.c
@@ -207,6 +207,8 @@ attach_shader(struct gl_context *ctx, GLuint program, GLuint shader)
struct gl_shader *sh;
GLuint i, n;
+ const bool same_type_disallowed = _mesa_is_gles(ctx);
+
shProg = _mesa_lookup_shader_program_err(ctx, program, "glAttachShader");
if (!shProg)
return;
@@ -227,6 +229,18 @@ attach_shader(struct gl_context *ctx, GLuint program, GLuint shader)
*/
_mesa_error(ctx, GL_INVALID_OPERATION, "glAttachShader");
return;
+ } else if (same_type_disallowed &&
+ shProg->Shaders[i]->Type == sh->Type) {
+ /* Shader with the same type is already attached to this program,
+ * OpenGL ES 2.0 and 3.0 specs say:
+ *
+ * "Multiple shader objects of the same type may not be attached
+ * to a single program object. [...] The error INVALID_OPERATION
+ * is generated if [...] another shader object of the same type
+ * as shader is already attached to program."
+ */
+ _mesa_error(ctx, GL_INVALID_OPERATION, "glAttachShader");
+ return;
}
}