summaryrefslogtreecommitdiff
path: root/src/glsl/ast.h
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2013-08-15 11:05:57 -0700
committerMatt Turner <mattst88@gmail.com>2013-08-21 22:47:02 -0700
commit1a45db97058d63b742993d0fcf0e5df44e2aa1c6 (patch)
tree93ce3506647faa94593467d8f55f6c34bc3323f0 /src/glsl/ast.h
parent9d08756ac7d27b5a392d17c2a91a55cec6edab5d (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 <ian.d.romanick@intel.com> Reviewed-by: Anuj Phogat <anuj.phogat@gmail.com>
Diffstat (limited to 'src/glsl/ast.h')
-rw-r--r--src/glsl/ast.h2
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;
};