summaryrefslogtreecommitdiffstats
path: root/src/glsl/ast.h
diff options
context:
space:
mode:
authorEric Anholt <[email protected]>2012-04-26 10:16:52 -0700
committerEric Anholt <[email protected]>2012-07-09 11:12:18 -0700
commit912a429bc529a017a426f06631b31da1c0eaa3ae (patch)
tree833d049708e6c6199edff8e81bba5e771bb1ec8f /src/glsl/ast.h
parent532e99cbf26d175220eac245b12011939ea07d0c (diff)
glsl: Don't hide the type of struct_declaration_list.
I've been trying to derive from this for UBO support, and the slightly obfuscated types were putting me over the edge. Reviewed-by: Kenneth Graunke <[email protected]> Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/glsl/ast.h')
-rw-r--r--src/glsl/ast.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/glsl/ast.h b/src/glsl/ast.h
index b096c838c06..7538b58e460 100644
--- a/src/glsl/ast.h
+++ b/src/glsl/ast.h
@@ -417,15 +417,19 @@ struct ast_type_qualifier {
const char *interpolation_string() const;
};
+class ast_declarator_list;
+
class ast_struct_specifier : public ast_node {
public:
- ast_struct_specifier(const char *identifier, ast_node *declarator_list);
+ ast_struct_specifier(const char *identifier,
+ ast_declarator_list *declarator_list);
virtual void print(void) const;
virtual ir_rvalue *hir(exec_list *instructions,
struct _mesa_glsl_parse_state *state);
const char *name;
+ /* List of ast_declarator_list * */
exec_list declarations;
};