diff options
author | Chris Forbes <[email protected]> | 2014-11-23 13:31:10 +1300 |
---|---|---|
committer | Chris Forbes <[email protected]> | 2014-11-23 15:04:15 +1300 |
commit | 89b9ef937c11598817e0ec2d20d70b5254d4e406 (patch) | |
tree | abb44bf78a9fd8ab1503791ef2244991a6e3c1d5 /src | |
parent | 3d9c1a9dd64282ab10a01cfa87a4e6b877faf8b3 (diff) |
mesa: Fix function name in GetActiveUniformName error
Signed-off-by: Chris Forbes <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/main/uniforms.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/uniforms.c b/src/mesa/main/uniforms.c index f7d5e89d956..d2d70e7f7a0 100644 --- a/src/mesa/main/uniforms.c +++ b/src/mesa/main/uniforms.c @@ -1208,7 +1208,7 @@ _mesa_GetActiveUniformName(GLuint program, GLuint uniformIndex, struct gl_shader_program *shProg; if (!ctx->Extensions.ARB_uniform_buffer_object) { - _mesa_error(ctx, GL_INVALID_OPERATION, "glGetActiveUniformBlockiv"); + _mesa_error(ctx, GL_INVALID_OPERATION, "glGetActiveUniformName"); return; } |