From a67330d157ffe05602a3163c946aa97e29cb6bb5 Mon Sep 17 00:00:00 2001 From: Michal Krol Date: Tue, 16 May 2006 10:01:07 +0000 Subject: Cleanup code. Change constructor prototype. --- src/mesa/shader/slang/slang_compile_variable.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/mesa/shader/slang/slang_compile_variable.h') diff --git a/src/mesa/shader/slang/slang_compile_variable.h b/src/mesa/shader/slang/slang_compile_variable.h index fd0d7a8737..6b9679a3b7 100644 --- a/src/mesa/shader/slang/slang_compile_variable.h +++ b/src/mesa/shader/slang/slang_compile_variable.h @@ -58,11 +58,13 @@ int slang_fully_specified_type_copy (slang_fully_specified_type *, const slang_f typedef struct slang_variable_scope_ { struct slang_variable_ *variables; - unsigned int num_variables; + GLuint num_variables; struct slang_variable_scope_ *outer_scope; } slang_variable_scope; -int slang_variable_scope_construct (slang_variable_scope *); +extern GLvoid +_slang_variable_scope_ctr (slang_variable_scope *); + void slang_variable_scope_destruct (slang_variable_scope *); int slang_variable_scope_copy (slang_variable_scope *, const slang_variable_scope *); -- cgit v1.2.3