diff options
author | Marek Olšák <[email protected]> | 2009-11-03 16:48:48 +0100 |
---|---|---|
committer | Corbin Simpson <[email protected]> | 2009-11-04 18:19:34 -0800 |
commit | ad96c0d851f6c3696fa6ae0c1f6ad56e849bc739 (patch) | |
tree | 0c9505747676828b025a3b4475b38e48b2222b0c /src/gallium/drivers/r300/r300_context.h | |
parent | 898de4a9d5e47ed32c600e5907476fd9338aa7e9 (diff) |
r300g: add color channel masking
Signed-off-by: Corbin Simpson <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r300/r300_context.h')
-rw-r--r-- | src/gallium/drivers/r300/r300_context.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/r300/r300_context.h b/src/gallium/drivers/r300/r300_context.h index ae7015634cc..8c65c04d01a 100644 --- a/src/gallium/drivers/r300/r300_context.h +++ b/src/gallium/drivers/r300/r300_context.h @@ -34,6 +34,7 @@ struct r300_vertex_shader; struct r300_blend_state { uint32_t blend_control; /* R300_RB3D_CBLEND: 0x4e04 */ uint32_t alpha_blend_control; /* R300_RB3D_ABLEND: 0x4e08 */ + uint32_t color_channel_mask; /* R300_RB3D_COLOR_CHANNEL_MASK: 0x4e0c */ uint32_t rop; /* R300_RB3D_ROPCNTL: 0x4e18 */ uint32_t dither; /* R300_RB3D_DITHER_CTL: 0x4e50 */ }; |