diff options
author | Kenneth Graunke <[email protected]> | 2010-07-08 12:40:52 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2010-07-08 15:44:19 -0700 |
commit | dfd30ca6a95a7d95835dad78ffe1fba4d1f4ef69 (patch) | |
tree | 2f40fbcbd069abb14fc977372e96c73ed35c01e3 /src/mesa | |
parent | 25cda5039df0da6c2c65f1cac1bfc750c0c16e82 (diff) |
glsl2: Remove generate_temporary and global temporary counter.
Most places in the code simply use a static name, which works because
names are never used to look up an ir_variable. generate_temporary is
simply unnecessary (and looks like it would leak memory, and isn't
thread safe...)
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/shader/ir_to_mesa.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/shader/ir_to_mesa.cpp b/src/mesa/shader/ir_to_mesa.cpp index 4496daf2a55..708c6fece1c 100644 --- a/src/mesa/shader/ir_to_mesa.cpp +++ b/src/mesa/shader/ir_to_mesa.cpp @@ -1938,7 +1938,6 @@ _mesa_glsl_compile_shader(GLcontext *ctx, struct gl_shader *shader) state->symbols = new(shader) glsl_symbol_table; state->info_log = talloc_strdup(shader, ""); state->error = false; - state->temp_index = 0; state->loop_or_switch_nesting = NULL; state->ARB_texture_rectangle_enable = true; |