From dfbdb2c0b3559c46d93f10d636a88b9541304fc7 Mon Sep 17 00:00:00 2001 From: Samuel Iglesias Gonsálvez Date: Thu, 20 Oct 2016 09:04:59 +0200 Subject: mesa/program: Add _mesa_symbol_table_replace_symbol() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This function allows to modify an existing symbol. v2: - Remove namespace usage now that it was deleted. Signed-off-by: Samuel Iglesias Gonsálvez Reviewed-by: Timothy Arceri --- src/mesa/program/symbol_table.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/mesa/program/symbol_table.h') diff --git a/src/mesa/program/symbol_table.h b/src/mesa/program/symbol_table.h index ff1e6f2065a..cba47143ef2 100644 --- a/src/mesa/program/symbol_table.h +++ b/src/mesa/program/symbol_table.h @@ -32,6 +32,10 @@ extern void _mesa_symbol_table_pop_scope(struct _mesa_symbol_table *table); extern int _mesa_symbol_table_add_symbol(struct _mesa_symbol_table *symtab, const char *name, void *declaration); +extern int _mesa_symbol_table_replace_symbol(struct _mesa_symbol_table *table, + const char *name, + void *declaration); + extern int _mesa_symbol_table_add_global_symbol(struct _mesa_symbol_table *symtab, const char *name, -- cgit v1.2.3