diff options
author | Chia-I Wu <[email protected]> | 2014-03-20 15:45:12 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2014-03-28 10:59:49 +0800 |
commit | e7f75745984937d004bf3ce08a2a8fd2149801d1 (patch) | |
tree | c3135a88c9a9cfc09241d061b4ab5152873db6e4 /src/glsl/glsl_symbol_table.h | |
parent | e3418562940f7021b6d4d981666918964c84abb7 (diff) |
glsl: remove {add,get}_type_ast from glsl_symbol_table
They are not needed since 0da1a2cc369052643ccaea75a1722cc37652d82a.
Signed-off-by: Chia-I Wu <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/glsl/glsl_symbol_table.h')
-rw-r--r-- | src/glsl/glsl_symbol_table.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/glsl/glsl_symbol_table.h b/src/glsl/glsl_symbol_table.h index 0e62448e2e7..f323fc305fa 100644 --- a/src/glsl/glsl_symbol_table.h +++ b/src/glsl/glsl_symbol_table.h @@ -98,7 +98,6 @@ 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); @@ -115,7 +114,6 @@ 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); |