OSDN Git Service

mesa: generate GL_INVALID_OPERATION in _mesa_get_uniform_location() if program isn...
authorBrian Paul <brian.paul@tungstengraphics.com>
Fri, 4 Jul 2008 15:58:55 +0000 (09:58 -0600)
committerBrian Paul <brian.paul@tungstengraphics.com>
Fri, 4 Jul 2008 16:04:03 +0000 (10:04 -0600)
src/mesa/shader/shader_api.c

index 3a067fe..6cfdf57 100644 (file)
@@ -1011,6 +1011,11 @@ _mesa_get_uniform_location(GLcontext *ctx, GLuint program, const GLchar *name)
    if (!shProg)
       return -1;
 
+   if (shProg->LinkStatus == GL_FALSE) {
+      _mesa_error(ctx, GL_INVALID_OPERATION, "glGetUniformfv(program)");
+      return -1;
+   }
+
    /* XXX we should return -1 if the uniform was declared, but not
     * actually used.
     */