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_to_hir.cpp | |
parent | 2262fe40816c883a614aa66f6646bfde1ca29cdc (diff) |
glsl: add name param to validate_flags()
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/compiler/glsl/ast_to_hir.cpp')
-rw-r--r-- | src/compiler/glsl/ast_to_hir.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/compiler/glsl/ast_to_hir.cpp b/src/compiler/glsl/ast_to_hir.cpp index 0b549790339..683c1440178 100644 --- a/src/compiler/glsl/ast_to_hir.cpp +++ b/src/compiler/glsl/ast_to_hir.cpp @@ -4517,10 +4517,9 @@ ast_declarator_list::hir(exec_list *instructions, allowed_atomic_qual_mask.flags.q.explicit_offset = 1; allowed_atomic_qual_mask.flags.q.uniform = 1; - type->qualifier.validate_flags(&loc, state, - "invalid layout qualifier for " - "atomic_uint", - allowed_atomic_qual_mask); + type->qualifier.validate_flags(&loc, state, allowed_atomic_qual_mask, + "invalid layout qualifier for", + "atomic_uint"); } if (this->declarations.is_empty()) { |