summaryrefslogtreecommitdiffstats
path: root/src/glsl/ir_clone.cpp
diff options
context:
space:
mode:
authorOlivier Galibert <galibert@pobox.com>2012-05-02 23:11:41 +0200
committerKenneth Graunke <kenneth@whitecape.org>2012-05-08 12:55:52 -0700
commit2ff7b121cad2892698ff1aa7690dd361ea2739a7 (patch)
tree36f37ef92994c7cd82b50fe7e35fb466fbb654f3 /src/glsl/ir_clone.cpp
parent8ec01ba2ff95449674c779c05afcd32bbf7dbdc8 (diff)
downloadexternal_mesa3d-2ff7b121cad2892698ff1aa7690dd361ea2739a7.zip
external_mesa3d-2ff7b121cad2892698ff1aa7690dd361ea2739a7.tar.gz
external_mesa3d-2ff7b121cad2892698ff1aa7690dd361ea2739a7.tar.bz2
glsl: Add an origin pointer in the function signature object.
This points to the object with the function body, allowing us to map from a built-in prototype to the actual body with IR code to execute. Signed-off-by: Olivier Galibert <galibert@pobox.com> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Diffstat (limited to 'src/glsl/ir_clone.cpp')
-rw-r--r--src/glsl/ir_clone.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/glsl/ir_clone.cpp b/src/glsl/ir_clone.cpp
index 5046ac3..591fe7b 100644
--- a/src/glsl/ir_clone.cpp
+++ b/src/glsl/ir_clone.cpp
@@ -324,6 +324,7 @@ ir_function_signature::clone_prototype(void *mem_ctx, struct hash_table *ht) con
copy->is_defined = false;
copy->is_builtin = this->is_builtin;
+ copy->origin = this;
/* Clone the parameter list, but NOT the body.
*/