glsl2: Add a method for querying if an AST type has any qualifiers.

This commit is contained in:
Kenneth Graunke
2010-06-29 00:47:44 -07:00
committed by Ian Romanick
parent 18707eba1c
commit 28527ed557
2 changed files with 11 additions and 0 deletions

View File

@@ -418,6 +418,7 @@ public:
class ast_fully_specified_type : public ast_node {
public:
virtual void print(void) const;
bool has_qualifiers() const;
ast_type_qualifier qualifier;
ast_type_specifier *specifier;