mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 04:38:03 +02:00
added cases for BRA, NOP
This commit is contained in:
parent
b456413d76
commit
3e1f4bc15b
1 changed files with 5 additions and 0 deletions
|
|
@ -816,6 +816,11 @@ _mesa_exec_vertex_program(GLcontext *ctx,
|
|||
case OPCODE_END:
|
||||
ctx->_CurrentProgram = 0;
|
||||
return;
|
||||
case OPCODE_BRA:
|
||||
/* XXX implement */
|
||||
/* FALLTHROUGH */
|
||||
case OPCODE_NOP:
|
||||
break;
|
||||
default:
|
||||
/* bad instruction opcode */
|
||||
_mesa_problem(ctx, "Bad VP Opcode in _mesa_exec_vertex_program");
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue