From: Chris Forbes Date: Sun, 23 Nov 2014 00:31:10 +0000 (+1300) Subject: mesa: Fix function name in GetActiveUniformName error X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=89b9ef937c11598817e0ec2d20d70b5254d4e406;p=mesa.git mesa: Fix function name in GetActiveUniformName error Signed-off-by: Chris Forbes --- 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; }