summaryrefslogtreecommitdiffstats
path: root/src/glsl/glsl_symbol_table.h
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2010-09-01 14:16:53 -0700
committerKenneth Graunke <kenneth@whitecape.org>2010-09-01 20:39:09 -0700
commite466b182bbf21f62fe6542091f4af3275555db80 (patch)
tree453dc4208b6aa3ef878173c58871285b63cd1742 /src/glsl/glsl_symbol_table.h
parent4d6221f90df9d04e5edcdddb3b6f76c0cb175421 (diff)
downloadexternal_mesa3d-e466b182bbf21f62fe6542091f4af3275555db80.zip
external_mesa3d-e466b182bbf21f62fe6542091f4af3275555db80.tar.gz
external_mesa3d-e466b182bbf21f62fe6542091f4af3275555db80.tar.bz2
glsl2: Remove unnecessary glsl_symbol_table::get_function parameter return_constructors
Now that constructors are not generated as functions or stored in the symbol table, there is no need to flag whether or not constructors should be returned.
Diffstat (limited to 'src/glsl/glsl_symbol_table.h')
-rw-r--r--src/glsl/glsl_symbol_table.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/glsl_symbol_table.h b/src/glsl/glsl_symbol_table.h
index f1369b5..f26de52 100644
--- a/src/glsl/glsl_symbol_table.h
+++ b/src/glsl/glsl_symbol_table.h
@@ -108,7 +108,7 @@ public:
/*@{*/
ir_variable *get_variable(const char *name);
const glsl_type *get_type(const char *name);
- ir_function *get_function(const char *name, bool return_constructors = true);
+ ir_function *get_function(const char *name);
/*@}*/
private: