diff options
author | Kenneth Graunke <[email protected]> | 2011-01-01 12:01:09 -0800 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2011-01-01 12:01:54 -0800 |
commit | 81168351a7f493fcde55e621af046c9301aa93e9 (patch) | |
tree | 27536a50847d18f6d15a95b92eb170a29e9ebb4f /src/glsl/ast_to_hir.cpp | |
parent | 1eceb9d323196ddbf167367c192f3ab12fd9c5f8 (diff) |
glsl: Remove unused "instructions" parameter.
I think was used long ago, when we actually read the builtins into the
shader's instruction stream directly, rather than creating a separate
shader and linking the two. It doesn't seem to serve any purpose now.
Diffstat (limited to 'src/glsl/ast_to_hir.cpp')
-rw-r--r-- | src/glsl/ast_to_hir.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/ast_to_hir.cpp b/src/glsl/ast_to_hir.cpp index 741cd19e9d3..2baeffc067f 100644 --- a/src/glsl/ast_to_hir.cpp +++ b/src/glsl/ast_to_hir.cpp @@ -60,7 +60,7 @@ void _mesa_ast_to_hir(exec_list *instructions, struct _mesa_glsl_parse_state *state) { _mesa_glsl_initialize_variables(instructions, state); - _mesa_glsl_initialize_functions(instructions, state); + _mesa_glsl_initialize_functions(state); state->symbols->language_version = state->language_version; |