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/common.h | |
parent | fb348c2cb16d0bc216d29889474972d5c14d0980 (diff) |
Handle CELL_CMD_VS_EXECUTE *only* outside batch commands.
Diffstat (limited to 'src/mesa/pipe/cell/common.h')
-rw-r--r-- | src/mesa/pipe/cell/common.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/pipe/cell/common.h b/src/mesa/pipe/cell/common.h index fbbdf728a12..a40cfb8210a 100644 --- a/src/mesa/pipe/cell/common.h +++ b/src/mesa/pipe/cell/common.h @@ -133,7 +133,6 @@ struct cell_array_info struct cell_shader_info { - unsigned processor; unsigned num_outputs; void *declarations; @@ -147,6 +146,7 @@ struct cell_shader_info #define SPU_VERTS_PER_BATCH 64 struct cell_command_vs { + uint opcode; /**< CELL_CMD_VS_EXECUTE */ struct cell_shader_info shader; unsigned num_elts; unsigned elts[SPU_VERTS_PER_BATCH]; @@ -190,6 +190,7 @@ struct cell_command struct cell_command_framebuffer fb; struct cell_command_clear_surface clear; struct cell_command_render render; + struct cell_command_vs vs; } ALIGN16_ATTRIB; |