summaryrefslogtreecommitdiff
path: root/src/glsl/ir_import_prototypes.cpp
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2010-08-04 12:34:56 -0700
committerEric Anholt <eric@anholt.net>2010-08-04 12:42:47 -0700
commit8273bd46877e2ea2b8a02b87a11c68102d07e1f2 (patch)
tree3182808d4b54aa9c094a5e41bcda1405244b8e0b /src/glsl/ir_import_prototypes.cpp
parent84ee01f40acf88185484df386b7715034e7685c9 (diff)
glsl2: Make the clone() method take a talloc context.
In most cases, we needed to be reparenting the cloned IR to a different context (for example, to the linked shader instead of the unlinked shader), or optimization before the reparent would cause memory usage of the original object to grow and grow.
Diffstat (limited to 'src/glsl/ir_import_prototypes.cpp')
-rw-r--r--src/glsl/ir_import_prototypes.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/ir_import_prototypes.cpp b/src/glsl/ir_import_prototypes.cpp
index 5c5dc00ad7..e553e12a49 100644
--- a/src/glsl/ir_import_prototypes.cpp
+++ b/src/glsl/ir_import_prototypes.cpp
@@ -95,7 +95,7 @@ public:
assert(const_cast<ir_variable *>(param)->as_variable() != NULL);
- ir_variable *const param_copy = param->clone(NULL);
+ ir_variable *const param_copy = param->clone(mem_ctx, NULL);
copy->parameters.push_tail(param_copy);
}