summaryrefslogtreecommitdiff
path: root/ir_print_visitor.h
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2010-03-29 14:11:25 -0700
committerIan Romanick <ian.d.romanick@intel.com>2010-03-29 15:17:11 -0700
commit3c6fea3048a0d9add2fec621d30c32f3519d8868 (patch)
treec281f08097ed8365da51444c99f119cce15b0747 /ir_print_visitor.h
parent721efc04da96451297ca1defe703fe755c212baa (diff)
Implement ir_if (for if-statments) and conversion from AST
The following tests now pass: glslparsertest/shaders/if1.frag glslparsertest/shaders/if2.frag The following tests that used to pass now fail. It appears that most of these fail because ast_nequal and ast_equal are not converted to HIR. shaders/glsl-unused-varying.frag shaders/glsl-fs-sqrt-branch.frag
Diffstat (limited to 'ir_print_visitor.h')
-rw-r--r--ir_print_visitor.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/ir_print_visitor.h b/ir_print_visitor.h
index 8fd684eb92..76d812e19c 100644
--- a/ir_print_visitor.h
+++ b/ir_print_visitor.h
@@ -64,6 +64,7 @@ public:
virtual void visit(ir_constant *);
virtual void visit(ir_call *);
virtual void visit(ir_return *);
+ virtual void visit(ir_if *);
/*@}*/
private: