diff options
author | Eric Anholt <[email protected]> | 2012-04-26 10:16:52 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2012-07-09 11:12:18 -0700 |
commit | 912a429bc529a017a426f06631b31da1c0eaa3ae (patch) | |
tree | 833d049708e6c6199edff8e81bba5e771bb1ec8f /src/glsl/glsl_parser_extras.cpp | |
parent | 532e99cbf26d175220eac245b12011939ea07d0c (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/glsl_parser_extras.cpp')
-rw-r--r-- | src/glsl/glsl_parser_extras.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/glsl_parser_extras.cpp b/src/glsl/glsl_parser_extras.cpp index c19b6f9e6a4..d9ee406cfd4 100644 --- a/src/glsl/glsl_parser_extras.cpp +++ b/src/glsl/glsl_parser_extras.cpp @@ -1003,7 +1003,7 @@ ast_struct_specifier::print(void) const ast_struct_specifier::ast_struct_specifier(const char *identifier, - ast_node *declarator_list) + ast_declarator_list *declarator_list) { if (identifier == NULL) { static unsigned anon_count = 1; |