diff options
author | Brian Paul <[email protected]> | 2008-09-11 10:26:00 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-09-11 10:39:29 -0600 |
commit | f19903aa83e9b6e18930cbda14cfec3cca2e1bf2 (patch) | |
tree | 932f277f02f9193f58e6a3afeb6a356b9142abcc /src | |
parent | aa4a08d429712fa516342ec02253c2591794ea5f (diff) |
cell: remove old blend/depth/stencil/logicop structs
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/cell/common.h | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/src/gallium/drivers/cell/common.h b/src/gallium/drivers/cell/common.h index 61d2b7d1aed..8aa2b23ec09 100644 --- a/src/gallium/drivers/cell/common.h +++ b/src/gallium/drivers/cell/common.h @@ -111,35 +111,6 @@ #define CELL_DEBUG_SYNC (1 << 1) -/** - */ -struct cell_command_depth_stencil_alpha_test -{ - uint64_t base; /**< Effective address of code start. */ - unsigned size; /**< Size in bytes of SPE code. */ - unsigned read_depth; /**< Flag: should depth be read? */ - unsigned read_stencil; /**< Flag: should stencil be read? */ - struct pipe_depth_stencil_alpha_state state; -}; - - -/** - * Upload code to perform framebuffer blend operation - */ -struct cell_command_blend -{ - uint64_t base; /**< Effective address of code start. */ - unsigned size; /**< Size in bytes of SPE code. */ - unsigned read_fb; /**< Flag: should framebuffer be read? */ -}; - - -struct cell_command_logicop -{ - uint64_t base; /**< Effective address of code start. */ - unsigned size; /**< Size in bytes of SPE code. */ -}; - #define SPU_MAX_FRAGMENT_OPS_INSTS 64 |