diff options
author | Eric Anholt <[email protected]> | 2010-07-18 17:45:16 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2010-07-18 18:13:06 -0700 |
commit | 1f47245bdda2c85bf0f0174e6c24a50486b413aa (patch) | |
tree | c38a52938e930d6d1e948a12a70bd813ce076da1 /src/glsl/ast_function.cpp | |
parent | 9be7f638130f46a9df2bfbcd4a03b36de9e4f3aa (diff) |
glsl2: Remove the const disease from function signature's callee.
Diffstat (limited to 'src/glsl/ast_function.cpp')
-rw-r--r-- | src/glsl/ast_function.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/glsl/ast_function.cpp b/src/glsl/ast_function.cpp index 467722c8680..aaf1e57ae28 100644 --- a/src/glsl/ast_function.cpp +++ b/src/glsl/ast_function.cpp @@ -64,8 +64,7 @@ process_call(exec_list *instructions, ir_function *f, { void *ctx = state; - const ir_function_signature *sig = - f->matching_signature(actual_parameters); + ir_function_signature *sig = f->matching_signature(actual_parameters); /* The instructions param will be used when the FINISHMEs below are done */ (void) instructions; |