diff options
author | Timothy Arceri <[email protected]> | 2016-07-30 16:33:26 +1000 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2016-07-31 09:24:45 +1000 |
commit | d3dc1b8b5ef61f0e7a11f7d70224e7cd42b37374 (patch) | |
tree | bc18daae918fd15b0a59e1c52f4213e83a15bc25 /src/compiler/glsl/ast.h | |
parent | 2262fe40816c883a614aa66f6646bfde1ca29cdc (diff) |
glsl: add name param to validate_flags()
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/compiler/glsl/ast.h')
-rw-r--r-- | src/compiler/glsl/ast.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compiler/glsl/ast.h b/src/compiler/glsl/ast.h index aa8c4228511..157895d0fbd 100644 --- a/src/compiler/glsl/ast.h +++ b/src/compiler/glsl/ast.h @@ -755,8 +755,8 @@ struct ast_type_qualifier { bool validate_flags(YYLTYPE *loc, _mesa_glsl_parse_state *state, - const char *message, - const ast_type_qualifier &allowed_flags); + const ast_type_qualifier &allowed_flags, + const char *message, const char *name); ast_subroutine_list *subroutine_list; }; |