diff options
author | Brian Paul <[email protected]> | 2008-10-15 14:39:16 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-10-15 14:39:16 -0600 |
commit | ec7d6c656178babdf143faa242f7a3df9d0bc22c (patch) | |
tree | 9983e7c509ca0cf85341a3699c38fb578b9ff586 /src/gallium/drivers/cell/spu/spu_command.c | |
parent | 8bf105997748ba268eb65b39461e379fe6642c5a (diff) |
cell: send rasterizer state to SPUs in proper way, remove front_winding hack
Diffstat (limited to 'src/gallium/drivers/cell/spu/spu_command.c')
-rw-r--r-- | src/gallium/drivers/cell/spu/spu_command.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/gallium/drivers/cell/spu/spu_command.c b/src/gallium/drivers/cell/spu/spu_command.c index 4febd5385b3..d2c282a0220 100644 --- a/src/gallium/drivers/cell/spu/spu_command.c +++ b/src/gallium/drivers/cell/spu/spu_command.c @@ -583,6 +583,14 @@ cmd_batch(uint opcode) case CELL_CMD_STATE_FS_CONSTANTS: pos = cmd_state_fs_constants(buffer, pos); break; + case CELL_CMD_STATE_RASTERIZER: + { + struct cell_command_rasterizer *rast = + (struct cell_command_rasterizer *) &buffer[pos]; + spu.rasterizer = rast->rasterizer; + pos += sizeof(*rast) / 8; + } + break; case CELL_CMD_STATE_SAMPLER: { struct cell_command_sampler *sampler |