diff options
author | Brian <brian@yutani.localnet.net> | 2006-12-16 12:50:51 -0700 |
---|---|---|
committer | Brian <brian@yutani.localnet.net> | 2006-12-16 12:50:51 -0700 |
commit | b456413d7644978bf7bd40d9c1bcba83f637f685 (patch) | |
tree | 1e1e3d7291d39141e757b918d6c28f6e52565a56 /src | |
parent | a4be1048870446a45a4a14178b47e2cb1a0d92d6 (diff) |
cases for NOP, BRA
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/tnl/t_vb_arbprogram.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mesa/tnl/t_vb_arbprogram.c b/src/mesa/tnl/t_vb_arbprogram.c index 1f17a7e389..ef7b9eaa6c 100644 --- a/src/mesa/tnl/t_vb_arbprogram.c +++ b/src/mesa/tnl/t_vb_arbprogram.c @@ -1026,6 +1026,13 @@ static void cvp_emit_inst( struct compilation *cp, } break; + case OPCODE_NOP: + break; + + case OPCODE_BRA: + /* XXX implement */ + break; + default: result = cvp_choose_result( cp, &inst->DstReg, &fixup ); nr_args = _mesa_num_inst_src_regs(inst->Opcode); |