summaryrefslogtreecommitdiff
path: root/src/glsl/glsl_parser_extras.h
diff options
context:
space:
mode:
authorKenneth Graunke <kenneth@whitecape.org>2010-07-08 12:40:52 -0700
committerKenneth Graunke <kenneth@whitecape.org>2010-07-08 15:44:19 -0700
commitdfd30ca6a95a7d95835dad78ffe1fba4d1f4ef69 (patch)
tree2f40fbcbd069abb14fc977372e96c73ed35c01e3 /src/glsl/glsl_parser_extras.h
parent25cda5039df0da6c2c65f1cac1bfc750c0c16e82 (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/glsl/glsl_parser_extras.h')
-rw-r--r--src/glsl/glsl_parser_extras.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/glsl/glsl_parser_extras.h b/src/glsl/glsl_parser_extras.h
index 16f7268181..4b28ae118d 100644
--- a/src/glsl/glsl_parser_extras.h
+++ b/src/glsl/glsl_parser_extras.h
@@ -67,9 +67,6 @@ struct _mesa_glsl_parse_state {
/** Was there an error during compilation? */
bool error;
- /** Index of last generated anonymous temporary. */
- unsigned temp_index;
-
/** Loop or switch statement containing the current instructions. */
class ir_instruction *loop_or_switch_nesting;