diff options
author | Brian <brian@yutani.localnet.net> | 2007-02-02 15:29:48 -0700 |
---|---|---|
committer | Brian <brian@yutani.localnet.net> | 2007-02-02 15:29:48 -0700 |
commit | fe45343df98ecdc06039b68d5a249a41f9e9e11e (patch) | |
tree | 63a436ea0ae1a910c8038eca481bf41cadc045f9 | |
parent | 884fdfeb2272802e3103321edfed9cb198950e90 (diff) |
s/slang_assembly_name_space/slang_name_space/
-rw-r--r-- | src/mesa/shader/slang/slang_codegen.c | 2 | ||||
-rw-r--r-- | src/mesa/shader/slang/slang_compile.c | 2 | ||||
-rw-r--r-- | src/mesa/shader/slang/slang_simplify.c | 4 | ||||
-rw-r--r-- | src/mesa/shader/slang/slang_simplify.h | 4 | ||||
-rw-r--r-- | src/mesa/shader/slang/slang_typeinfo.c | 6 | ||||
-rw-r--r-- | src/mesa/shader/slang/slang_typeinfo.h | 12 |
6 files changed, 15 insertions, 15 deletions
diff --git a/src/mesa/shader/slang/slang_codegen.c b/src/mesa/shader/slang/slang_codegen.c index 222bf113cc..d972118de6 100644 --- a/src/mesa/shader/slang/slang_codegen.c +++ b/src/mesa/shader/slang/slang_codegen.c @@ -1267,7 +1267,7 @@ _slang_first_function(struct slang_function_scope_ *scope, const char *name) slang_function * _slang_locate_function(const slang_function_scope * funcs, slang_atom a_name, const slang_operation * args, GLuint num_args, - const slang_assembly_name_space * space, + const slang_name_space * space, slang_atom_pool * atoms) { GLuint i; diff --git a/src/mesa/shader/slang/slang_compile.c b/src/mesa/shader/slang/slang_compile.c index 615dfc1bf2..2f4d458b36 100644 --- a/src/mesa/shader/slang/slang_compile.c +++ b/src/mesa/shader/slang/slang_compile.c @@ -339,7 +339,7 @@ static GLboolean parse_array_len(slang_parse_ctx * C, slang_output_ctx * O, GLuint * len) { slang_operation array_size; - slang_assembly_name_space space; + slang_name_space space; GLboolean result; if (!slang_operation_construct(&array_size)) diff --git a/src/mesa/shader/slang/slang_simplify.c b/src/mesa/shader/slang/slang_simplify.c index 19e627489f..bf6afe4532 100644 --- a/src/mesa/shader/slang/slang_simplify.c +++ b/src/mesa/shader/slang/slang_simplify.c @@ -90,7 +90,7 @@ _slang_lookup_constant(const char *name) */ void _slang_simplify(slang_operation *oper, - const slang_assembly_name_space * space, + const slang_name_space * space, slang_atom_pool * atoms) { GLboolean isFloat[4]; @@ -275,7 +275,7 @@ _slang_simplify(slang_operation *oper, */ GLboolean _slang_adapt_call(slang_operation *callOper, const slang_function *fun, - const slang_assembly_name_space * space, + const slang_name_space * space, slang_atom_pool * atoms) { const GLboolean haveRetValue = _slang_function_has_return_value(fun); diff --git a/src/mesa/shader/slang/slang_simplify.h b/src/mesa/shader/slang/slang_simplify.h index b29740eaca..d6979a800a 100644 --- a/src/mesa/shader/slang/slang_simplify.h +++ b/src/mesa/shader/slang/slang_simplify.h @@ -9,13 +9,13 @@ _slang_lookup_constant(const char *name); extern void _slang_simplify(slang_operation *oper, - const slang_assembly_name_space * space, + const slang_name_space * space, slang_atom_pool * atoms); extern GLboolean _slang_adapt_call(slang_operation *callOper, const slang_function *fun, - const slang_assembly_name_space * space, + const slang_name_space * space, slang_atom_pool * atoms); diff --git a/src/mesa/shader/slang/slang_typeinfo.c b/src/mesa/shader/slang/slang_typeinfo.c index fd5cd70a3c..d48113a14a 100644 --- a/src/mesa/shader/slang/slang_typeinfo.c +++ b/src/mesa/shader/slang/slang_typeinfo.c @@ -257,7 +257,7 @@ slang_assembly_typeinfo_destruct(slang_assembly_typeinfo * ti) static GLboolean typeof_existing_function(const char *name, const slang_operation * params, GLuint num_params, - const slang_assembly_name_space * space, + const slang_name_space * space, slang_type_specifier * spec, slang_atom_pool * atoms) { @@ -290,7 +290,7 @@ _slang_typeof_operation(const slang_assemble_ctx * A, */ GLboolean _slang_typeof_operation_(const slang_operation * op, - const slang_assembly_name_space * space, + const slang_name_space * space, slang_assembly_typeinfo * ti, slang_atom_pool * atoms) { @@ -616,7 +616,7 @@ _slang_typeof_operation_(const slang_operation * op, GLboolean _slang_typeof_function(slang_atom a_name, const slang_operation * params, GLuint num_params, - const slang_assembly_name_space * space, + const slang_name_space * space, slang_type_specifier * spec, GLboolean * exists, slang_atom_pool * atoms) { diff --git a/src/mesa/shader/slang/slang_typeinfo.h b/src/mesa/shader/slang/slang_typeinfo.h index b2ca8b8633..267f9abe7b 100644 --- a/src/mesa/shader/slang/slang_typeinfo.h +++ b/src/mesa/shader/slang/slang_typeinfo.h @@ -46,18 +46,18 @@ typedef struct slang_swizzle_ GLuint swizzle[4]; } slang_swizzle; -typedef struct slang_assembly_name_space_ +typedef struct slang_name_space_ { struct slang_function_scope_ *funcs; struct slang_struct_scope_ *structs; struct slang_variable_scope_ *vars; -} slang_assembly_name_space; +} slang_name_space; typedef struct slang_assemble_ctx_ { slang_atom_pool *atoms; - slang_assembly_name_space space; + slang_name_space space; slang_swizzle swz; struct gl_program *program; slang_var_table *vartable; @@ -71,7 +71,7 @@ extern struct slang_function_ * _slang_locate_function(const struct slang_function_scope_ *funcs, slang_atom name, const struct slang_operation_ *params, GLuint num_params, - const slang_assembly_name_space *space, + const slang_name_space *space, slang_atom_pool *); @@ -171,7 +171,7 @@ _slang_typeof_operation(const slang_assemble_ctx *, extern GLboolean _slang_typeof_operation_(const struct slang_operation_ *, - const slang_assembly_name_space *, + const slang_name_space *, slang_assembly_typeinfo *, slang_atom_pool *); /** @@ -182,7 +182,7 @@ _slang_typeof_operation_(const struct slang_operation_ *, extern GLboolean _slang_typeof_function(slang_atom a_name, const struct slang_operation_ *params, - GLuint num_params, const slang_assembly_name_space *, + GLuint num_params, const slang_name_space *, slang_type_specifier *spec, GLboolean *exists, slang_atom_pool *); |