diff options
author | Ian Romanick <ian.d.romanick@intel.com> | 2010-05-10 11:17:53 -0700 |
---|---|---|
committer | Ian Romanick <ian.d.romanick@intel.com> | 2010-05-10 11:17:53 -0700 |
commit | 304ea90233baeac6801a98e981658cb7a2d2501c (patch) | |
tree | efe5c34816a7ec3ae1df2d6f47f7c7987ea94d3b /glsl_parser_extras.h | |
parent | 752c905b8ca694df1e863d500653b386653c35e7 (diff) |
Convert ast_node use of simple_node to exec_list and exec_node
Diffstat (limited to 'glsl_parser_extras.h')
-rw-r--r-- | glsl_parser_extras.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/glsl_parser_extras.h b/glsl_parser_extras.h index b06b3fe920..157b9861a3 100644 --- a/glsl_parser_extras.h +++ b/glsl_parser_extras.h @@ -26,7 +26,6 @@ #define GLSL_PARSER_EXTRAS_H #include <cstdlib> -#include "main/simple_list.h" #include "glsl_symbol_table.h" enum _mesa_glsl_parser_targets { @@ -38,7 +37,7 @@ enum _mesa_glsl_parser_targets { struct _mesa_glsl_parse_state { void *scanner; - struct simple_node translation_unit; + exec_list translation_unit; glsl_symbol_table *symbols; unsigned language_version; |