diff options
author | Ian Romanick <[email protected]> | 2008-01-30 19:30:15 -0800 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2008-01-30 20:14:52 -0800 |
commit | 193491cbd3ad2ad95243181c201da4640f3a29c2 (patch) | |
tree | 6f8ce913e65402465536507792c9878d837d27b6 /src/mesa/pipe/cell/spu | |
parent | fb348c2cb16d0bc216d29889474972d5c14d0980 (diff) |
Handle CELL_CMD_VS_EXECUTE *only* outside batch commands.
Diffstat (limited to 'src/mesa/pipe/cell/spu')
-rw-r--r-- | src/mesa/pipe/cell/spu/spu_main.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/mesa/pipe/cell/spu/spu_main.c b/src/mesa/pipe/cell/spu/spu_main.c index 9daa3ec735a..7105c0f8977 100644 --- a/src/mesa/pipe/cell/spu/spu_main.c +++ b/src/mesa/pipe/cell/spu/spu_main.c @@ -397,11 +397,6 @@ cmd_batch(uint opcode) cmd_state_vs_array_info((struct cell_array_info *) &buffer[pos+1]); pos += (1 + sizeof(struct cell_array_info) / 4); break; - case CELL_CMD_VS_EXECUTE: - spu_execute_vertex_shader(&draw, - (struct cell_command_vs *) &buffer[pos+1]); - pos += (1 + sizeof(struct cell_command_vs) / 4); - break; default: printf("SPU %u: bad opcode: 0x%x\n", spu.init.id, buffer[pos]); ASSERT(0); @@ -470,6 +465,9 @@ main_loop(void) assert(pos_incr == 0); } break; + case CELL_CMD_VS_EXECUTE: + spu_execute_vertex_shader(&draw, &cmd.vs); + break; case CELL_CMD_BATCH: cmd_batch(opcode); break; |