summaryrefslogtreecommitdiff
path: root/src/mesa/shader/slang/slang_compile_function.c
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2006-11-18 17:45:01 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2006-11-18 17:45:01 +0000
commit2164cf77306856f7d20965354b4eeff3736ddf64 (patch)
tree9852b69033427e2ecf0e0573012fa136f0a45ebc /src/mesa/shader/slang/slang_compile_function.c
parent4d4373bb0fa06093d82796950ede5a26fbfdd1d4 (diff)
move fix-up code into new slang_fixup_save() function
Diffstat (limited to 'src/mesa/shader/slang/slang_compile_function.c')
-rw-r--r--src/mesa/shader/slang/slang_compile_function.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/mesa/shader/slang/slang_compile_function.c b/src/mesa/shader/slang/slang_compile_function.c
index b0e2b62d42..e6e0d89ddb 100644
--- a/src/mesa/shader/slang/slang_compile_function.c
+++ b/src/mesa/shader/slang/slang_compile_function.c
@@ -47,6 +47,25 @@ slang_fixup_table_free(slang_fixup_table * fix)
slang_fixup_table_init(fix);
}
+/**
+ * Add a new fixup address to the table.
+ */
+GLboolean
+slang_fixup_save(slang_fixup_table *fixups, GLuint address)
+{
+ fixups->table = (GLuint *)
+ slang_alloc_realloc(fixups->table,
+ fixups->count * sizeof(GLuint),
+ (fixups->count + 1) * sizeof(GLuint));
+ if (fixups->table == NULL)
+ return GL_FALSE;
+ fixups->table[fixups->count] = address;
+ fixups->count++;
+ return GL_TRUE;
+}
+
+
+
/* slang_function */
int