summaryrefslogtreecommitdiffstats
path: root/src/glsl/glsl_symbol_table.h
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2013-06-25 00:27:41 -0700
committerMatt Turner <mattst88@gmail.com>2013-07-11 20:58:59 -0700
commit5df807b06f20d53063af9cfc5b4fc867f5fb810a (patch)
treee8c2430f713720db16831690e0b1ba5cbb927aec /src/glsl/glsl_symbol_table.h
parente641b5fbeeff6b8391de4c854c6456eac691b1b5 (diff)
downloadexternal_mesa3d-5df807b06f20d53063af9cfc5b4fc867f5fb810a.zip
external_mesa3d-5df807b06f20d53063af9cfc5b4fc867f5fb810a.tar.gz
external_mesa3d-5df807b06f20d53063af9cfc5b4fc867f5fb810a.tar.bz2
glsl: Track structs' ast_type_specifiers in symbol table.
Will be used in a future commit. An ast_type_specifier is stored (rather than an ast_struct_specifier) with the idea that we may have more general uses for this in the future. struct names are prefixed with '#ast.' to avoid collisions with the glsl_types in the symbol table. Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
Diffstat (limited to 'src/glsl/glsl_symbol_table.h')
-rw-r--r--src/glsl/glsl_symbol_table.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/glsl/glsl_symbol_table.h b/src/glsl/glsl_symbol_table.h
index 2753bdf..62d26b8 100644
--- a/src/glsl/glsl_symbol_table.h
+++ b/src/glsl/glsl_symbol_table.h
@@ -98,6 +98,7 @@ public:
/*@{*/
bool add_variable(ir_variable *v);
bool add_type(const char *name, const glsl_type *t);
+ bool add_type_ast(const char *name, const class ast_type_specifier *t);
bool add_function(ir_function *f);
bool add_interface(const char *name, const glsl_type *i,
enum ir_variable_mode mode);
@@ -114,6 +115,7 @@ public:
/*@{*/
ir_variable *get_variable(const char *name);
const glsl_type *get_type(const char *name);
+ const class ast_type_specifier *get_type_ast(const char *name);
ir_function *get_function(const char *name);
const glsl_type *get_interface(const char *name,
enum ir_variable_mode mode);