Module: Mesa Branch: master Commit: a6932faae1074445210d392a80b94fdac147b255 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=a6932faae1074445210d392a80b94fdac147b255
Author: Andreas Boll <[email protected]> Date: Wed Nov 8 15:15:08 2017 +0100 glsl: Fix typo fragement -> fragment Fixes: 94d669b0d2f ("glsl: enforce fragment shader input restrictions in GLSL ES 3.10") Signed-off-by: Andreas Boll <[email protected]> Reviewed-by: Eric Engestrom <[email protected]> Reviewed-by: Eric Anholt <[email protected]> Reviewed-by: Emil Velikov <[email protected]> --- src/compiler/glsl/ast_to_hir.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/glsl/ast_to_hir.cpp b/src/compiler/glsl/ast_to_hir.cpp index 441404f86d..adb613a2c7 100644 --- a/src/compiler/glsl/ast_to_hir.cpp +++ b/src/compiler/glsl/ast_to_hir.cpp @@ -5260,7 +5260,7 @@ ast_declarator_list::hir(exec_list *instructions, if (var->type->fields.structure[i].type->is_array() || var->type->fields.structure[i].type->is_record()) _mesa_glsl_error(&loc, state, - "fragement shader input cannot have " + "fragment shader input cannot have " "a struct that contains an " "array or struct"); } _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
