summaryrefslogtreecommitdiff
path: root/ir.h
diff options
context:
space:
mode:
authorKenneth Graunke <kenneth@whitecape.org>2010-06-09 11:07:53 -0700
committerKenneth Graunke <kenneth@whitecape.org>2010-06-09 11:14:58 -0700
commitb97efa5db5fce2e0d9a4c61a939c85b240c89170 (patch)
tree0fad9e25c8b2a24fe33a4574e361bff3d1235acb /ir.h
parent8331d489487268cafb3248a598e409bff6b1b123 (diff)
ir_function_cloning_visitor: Add support for ir_texture.
Diffstat (limited to 'ir.h')
-rw-r--r--ir.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ir.h b/ir.h
index 33ce4a04c3..78ea196ffb 100644
--- a/ir.h
+++ b/ir.h
@@ -770,7 +770,7 @@ enum ir_texture_opcode {
class ir_texture : public ir_rvalue {
public:
ir_texture(enum ir_texture_opcode op)
- : op(op)
+ : op(op), projector(NULL), shadow_comparitor(NULL)
{
/* empty */
}