diff options
author | Ian Romanick <[email protected]> | 2013-01-22 01:14:36 -0500 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2013-01-25 09:07:36 -0500 |
commit | 22233da1ee4b59663966169759960c00c033d0e9 (patch) | |
tree | e26a6f241f19ca1e412bdf2c6fa4b02f3f659b94 /src/glsl/ir_clone.cpp | |
parent | f09d77b2af0e6e7553a1e2efca2f12fe2e4dcea8 (diff) |
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 <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/glsl/ir_clone.cpp')
-rw-r--r-- | src/glsl/ir_clone.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/glsl/ir_clone.cpp b/src/glsl/ir_clone.cpp index c221a96c3f3..b94ff05df6c 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; |