diff options
author | Ian Romanick <[email protected]> | 2008-03-17 15:45:52 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2008-03-17 15:47:45 -0700 |
commit | 1936e4bdfd776f78f9fe44f77ce66066fd166360 (patch) | |
tree | c72c00d624d332733d2b643e3dffd5114b18cc34 /src/gallium/drivers/cell/common.h | |
parent | 0c715de39fa8337a2753dacd77ed280000416c1a (diff) |
cell: Initial code-gen for alpha / stencil / depth testing
Alpha test is currently broken because all per-fragment testing occurs
before alpha is calculated.
Stencil test is currently broken because the Z-clear code asserts if
there is a stencil buffer.
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 9a4004535ea..fe93fd8e1a2 100644 --- a/src/gallium/drivers/cell/common.h +++ b/src/gallium/drivers/cell/common.h @@ -105,6 +105,16 @@ /** + */ +struct cell_command_depth_stencil_alpha_test { + uint64_t base; /**< Effective address of code start. */ + unsigned size; /**< Size in bytes of test code. */ + unsigned read_depth; /**< Flag: should depth be read? */ + unsigned read_stencil; /**< Flag: should stencil be read? */ +}; + + +/** * Tell SPUs about the framebuffer size, location */ struct cell_command_framebuffer |