diff options
author | Marek Olšák <[email protected]> | 2011-03-13 11:54:29 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2011-03-14 10:09:34 +0100 |
commit | 23ccab39cd6b89efd8be238c3061e7ddb3697a55 (patch) | |
tree | 0f52c6797d54600c155f6b4e3f77557a7f5642f3 /src/gallium/drivers/r300/r300_context.h | |
parent | 340e15c79b9c973d8dcefb55e2adf3ac813d1fec (diff) |
r300g: clamp after blending for fixed-point formats only
Diffstat (limited to 'src/gallium/drivers/r300/r300_context.h')
-rw-r--r-- | src/gallium/drivers/r300/r300_context.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/r300/r300_context.h b/src/gallium/drivers/r300/r300_context.h index 16247087103..e395f41290e 100644 --- a/src/gallium/drivers/r300/r300_context.h +++ b/src/gallium/drivers/r300/r300_context.h @@ -67,7 +67,8 @@ struct r300_aa_state { struct r300_blend_state { struct pipe_blend_state state; - uint32_t cb[8]; + uint32_t cb_clamp[8]; + uint32_t cb_noclamp[8]; uint32_t cb_no_readwrite[8]; }; |