diff options
author | Ian Romanick <[email protected]> | 2008-03-19 17:29:39 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2008-03-20 17:37:26 -0700 |
commit | 2b21bde3b1fa6fe357a3a5adc6249e89d6915524 (patch) | |
tree | 8a6edb1d40770837580e9d3de553c001947516d3 /src/gallium/drivers/cell/common.h | |
parent | 3b3774b1227743147159676795b542c0eb7c2bdf (diff) |
cell: Use code-gen for alpha blend
So far this is only tested when GL_BLEND is disabled.
Diffstat (limited to 'src/gallium/drivers/cell/common.h')
-rw-r--r-- | src/gallium/drivers/cell/common.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/gallium/drivers/cell/common.h b/src/gallium/drivers/cell/common.h index fe93fd8e1a2..d59e4f7036e 100644 --- a/src/gallium/drivers/cell/common.h +++ b/src/gallium/drivers/cell/common.h @@ -115,6 +115,16 @@ struct cell_command_depth_stencil_alpha_test { /** + * 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 test code. */ + unsigned read_fb; /**< Flag: should framebuffer be read? */ +}; + + +/** * Tell SPUs about the framebuffer size, location */ struct cell_command_framebuffer |