From: Ilia Mirkin Date: Fri, 21 Aug 2015 19:08:15 +0000 (-0400) Subject: glsl: fix error message when validating tcs output decls X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=365d631eb220e7d546a726d6f38f76e2e3746d65;p=mesa.git glsl: fix error message when validating tcs output decls Signed-off-by: Ilia Mirkin Reviewed-by: Marek Olšák --- diff --git a/src/glsl/ast_to_hir.cpp b/src/glsl/ast_to_hir.cpp index c7ce4096f4d..517841c99f8 100644 --- a/src/glsl/ast_to_hir.cpp +++ b/src/glsl/ast_to_hir.cpp @@ -3317,7 +3317,7 @@ handle_tess_ctrl_shader_output_decl(struct _mesa_glsl_parse_state *state, validate_layout_qualifier_vertex_count(state, loc, var, num_vertices, &state->tcs_output_size, - "geometry shader input"); + "tessellation control shader output"); } /**