glsl: remove {add,get}_type_ast from glsl_symbol_table
[mesa.git] / src / glsl / glsl_symbol_table.h
index 0e62448e2e7ca6c4ff5df1a3ce44afa4ddc5b6e2..f323fc305fae8c3f8c9da83db7f41e7718d8e25d 100644 (file)
@@ -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);