From: Chris Forbes Date: Tue, 9 Sep 2014 07:55:29 +0000 (+1200) Subject: glsl: fix error message for redeclaring gl_PerVertex as output X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b84c02f9cdcc23ecff7f21df28a827f71be9e5fd;p=mesa.git glsl: fix error message for redeclaring gl_PerVertex as output Signed-off-by: Chris Forbes Reviewed-by: Kenneth Graunke --- diff --git a/src/glsl/ast_to_hir.cpp b/src/glsl/ast_to_hir.cpp index 3b38dcfde69..5ec1614be34 100644 --- a/src/glsl/ast_to_hir.cpp +++ b/src/glsl/ast_to_hir.cpp @@ -5462,7 +5462,7 @@ ast_interface_block::hir(exec_list *instructions, } if (this->instance_name != NULL) { _mesa_glsl_error(&loc, state, - "gl_PerVertex input may not be redeclared with " + "gl_PerVertex output may not be redeclared with " "an instance name"); } break;