diff options
author | Brian <brian@yutani.localnet.net> | 2007-02-05 15:00:07 -0700 |
---|---|---|
committer | Brian <brian@yutani.localnet.net> | 2007-02-05 15:00:07 -0700 |
commit | cf92c727979e434d148b23d20f2e4e0f4bc4de61 (patch) | |
tree | 4f4142ad5919f7684216ae580abb627878d958b0 /src/mesa/tnl | |
parent | 5db088d70fbd14620c2fc7840096a05993f8e2b9 (diff) |
Initial implementation of high-level flow-control instructions.
IF/ELSE/ENDIF and BEGIN_LOOP/END_LOOP/BREAK instructions seem to work.
Disabled by default though until better tested.
Implemented IR_NOT, but needs optimization.
Diffstat (limited to 'src/mesa/tnl')
-rw-r--r-- | src/mesa/tnl/t_vp_build.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/tnl/t_vp_build.c b/src/mesa/tnl/t_vp_build.c index 47fed32904..6fb14e7caa 100644 --- a/src/mesa/tnl/t_vp_build.c +++ b/src/mesa/tnl/t_vp_build.c @@ -497,7 +497,7 @@ static void debug_insn( struct prog_instruction *inst, const char *fn, } _mesa_printf("%d:\t", line); - _mesa_print_instruction(inst); + _mesa_print_instruction(inst, 0); } } |