summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorIlia Mirkin <[email protected]>2015-08-21 15:08:15 -0400
committerIlia Mirkin <[email protected]>2015-08-21 15:20:23 -0400
commit365d631eb220e7d546a726d6f38f76e2e3746d65 (patch)
treea4c6dd449002016ec0cc45b52a8ebf7184f37a2b /src
parent3b4d03d44044f683d9b194c069cd3c1e6acb105f (diff)
glsl: fix error message when validating tcs output decls
Signed-off-by: Ilia Mirkin <[email protected]> Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src')
-rw-r--r--src/glsl/ast_to_hir.cpp2
1 files changed, 1 insertions, 1 deletions
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");
}
/**