summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/radeonsi/si_state.h
diff options
context:
space:
mode:
authorMarek Olšák <[email protected]>2013-07-30 22:29:29 +0200
committerMarek Olšák <[email protected]>2013-08-17 01:48:25 +0200
commit6d4755a4d75436fb117b28d18fa19d2461b6621d (patch)
treeaff559258cfc1ee36108ca1fcf31b88641fdc218 /src/gallium/drivers/radeonsi/si_state.h
parent07955d4f2b969efb59b9c35c1fba5a0cae2cdc55 (diff)
radeonsi: implement GL_SAMPLE_ALPHA_TO_ONE
Reviewed-by: Michel Dänzer <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeonsi/si_state.h')
-rw-r--r--src/gallium/drivers/radeonsi/si_state.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeonsi/si_state.h b/src/gallium/drivers/radeonsi/si_state.h
index bc121048f2c..fc9aa221959 100644
--- a/src/gallium/drivers/radeonsi/si_state.h
+++ b/src/gallium/drivers/radeonsi/si_state.h
@@ -40,7 +40,7 @@ struct si_atom {
struct si_state_blend {
struct si_pm4_state pm4;
uint32_t cb_target_mask;
- uint32_t cb_color_control;
+ bool alpha_to_one;
};
struct si_state_viewport {
@@ -52,6 +52,7 @@ struct si_state_rasterizer {
struct si_pm4_state pm4;
bool flatshade;
bool two_side;
+ bool multisample_enable;
unsigned sprite_coord_enable;
unsigned pa_sc_line_stipple;
unsigned pa_su_sc_mode_cntl;