From 89b9ef937c11598817e0ec2d20d70b5254d4e406 Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Sun, 23 Nov 2014 13:31:10 +1300 Subject: [PATCH] mesa: Fix function name in GetActiveUniformName error Signed-off-by: Chris Forbes --- src/mesa/main/uniforms.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.30.2