summaryrefslogtreecommitdiffstats
path: root/src/glsl/ir_clone.cpp
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2013-01-22 01:14:36 -0500
committerIan Romanick <ian.d.romanick@intel.com>2013-01-25 09:07:36 -0500
commit22233da1ee4b59663966169759960c00c033d0e9 (patch)
treee26a6f241f19ca1e412bdf2c6fa4b02f3f659b94 /src/glsl/ir_clone.cpp
parentf09d77b2af0e6e7553a1e2efca2f12fe2e4dcea8 (diff)
downloadexternal_mesa3d-22233da1ee4b59663966169759960c00c033d0e9.zip
external_mesa3d-22233da1ee4b59663966169759960c00c033d0e9.tar.gz
external_mesa3d-22233da1ee4b59663966169759960c00c033d0e9.tar.bz2
glsl: Remove ir_variable::uniform_block
v2: A previous patch contained a spurious hunk that removed an assignment to ir_variable::uniform_block. That hunk was moved to this patch. Suggested by Carl Worth. Signed-off-by: Ian Romanick <ian.d.romanick@intel.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, 0 insertions, 1 deletions
diff --git a/src/glsl/ir_clone.cpp b/src/glsl/ir_clone.cpp
index c221a96..b94ff05 100644
--- a/src/glsl/ir_clone.cpp
+++ b/src/glsl/ir_clone.cpp
@@ -50,7 +50,6 @@ ir_variable::clone(void *mem_ctx, struct hash_table *ht) const
var->interpolation = this->interpolation;
var->location = this->location;
var->index = this->index;
- var->uniform_block = this->uniform_block;
var->warn_extension = this->warn_extension;
var->origin_upper_left = this->origin_upper_left;
var->pixel_center_integer = this->pixel_center_integer;