diff options
author | Matt Turner <[email protected]> | 2013-08-15 11:05:57 -0700 |
---|---|---|
committer | Matt Turner <[email protected]> | 2013-08-21 22:47:02 -0700 |
commit | 1a45db97058d63b742993d0fcf0e5df44e2aa1c6 (patch) | |
tree | 93ce3506647faa94593467d8f55f6c34bc3323f0 /src/glsl/ast.h | |
parent | 9d08756ac7d27b5a392d17c2a91a55cec6edab5d (diff) |
glsl: Rename ubo_qualifiers_valid to ubo_qualifiers_allowed.
The variable means that UBO qualifiers are allowed in a particular
context (e.g., not allowed in a struct field declaration), rather than a
particular set of UBO qualifiers are valid.
Reviewed-by: Ian Romanick <[email protected]>
Reviewed-by: Anuj Phogat <[email protected]>
Diffstat (limited to 'src/glsl/ast.h')
-rw-r--r-- | src/glsl/ast.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/ast.h b/src/glsl/ast.h index 335374de16b..d227febd71e 100644 --- a/src/glsl/ast.h +++ b/src/glsl/ast.h @@ -644,7 +644,7 @@ public: * Flag indicating that these declarators are in a uniform block, * allowing UBO type qualifiers. */ - bool ubo_qualifiers_valid; + bool ubo_qualifiers_allowed; }; |