diff options
author | Kenneth Graunke <[email protected]> | 2010-06-30 10:47:34 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2010-06-30 14:54:58 -0700 |
commit | 16efab1c4dee6e6a827ba5f1c482378159545ae5 (patch) | |
tree | 1d911d146ca7811c7e7b36950f454dc96a4db99e /src/glsl/ir_print_visitor.cpp | |
parent | 88c20c46b8f708e89adef28f341c51ea7883b6a0 (diff) |
glsl2: Define new ir_discard instruction.
Diffstat (limited to 'src/glsl/ir_print_visitor.cpp')
-rw-r--r-- | src/glsl/ir_print_visitor.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/glsl/ir_print_visitor.cpp b/src/glsl/ir_print_visitor.cpp index be5a843f67d..6f867e32532 100644 --- a/src/glsl/ir_print_visitor.cpp +++ b/src/glsl/ir_print_visitor.cpp @@ -315,6 +315,20 @@ ir_print_visitor::visit(ir_return *ir) void +ir_print_visitor::visit(ir_discard *ir) +{ + printf("(discard "); + + if (ir->condition != NULL) { + printf(" "); + ir->condition->accept(this); + } + + printf(")"); +} + + +void ir_print_visitor::visit(ir_if *ir) { printf("(if "); |