mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-20 13:50:11 +01:00
Merge branch 'r600fixcaymanmsaashadingbehavior' into 'main'
r600: fix cayman msaa shading behavior See merge request mesa/mesa!38615
This commit is contained in:
commit
2a13e34a99
1 changed files with 1 additions and 1 deletions
|
|
@ -226,7 +226,7 @@ void cayman_emit_msaa_state(struct radeon_cmdbuf *cs, int nr_samples,
|
||||||
if (nr_samples > 1) {
|
if (nr_samples > 1) {
|
||||||
radeon_set_context_reg(cs, CM_R_028804_DB_EQAA,
|
radeon_set_context_reg(cs, CM_R_028804_DB_EQAA,
|
||||||
S_028804_MAX_ANCHOR_SAMPLES(log_samples) |
|
S_028804_MAX_ANCHOR_SAMPLES(log_samples) |
|
||||||
S_028804_PS_ITER_SAMPLES(log_ps_iter_samples) |
|
S_028804_PS_ITER_SAMPLES(log_ps_iter_samples ? log_samples : 0) |
|
||||||
S_028804_MASK_EXPORT_NUM_SAMPLES(log_samples) |
|
S_028804_MASK_EXPORT_NUM_SAMPLES(log_samples) |
|
||||||
S_028804_ALPHA_TO_MASK_NUM_SAMPLES(log_samples) |
|
S_028804_ALPHA_TO_MASK_NUM_SAMPLES(log_samples) |
|
||||||
S_028804_HIGH_QUALITY_INTERSECTIONS(1) |
|
S_028804_HIGH_QUALITY_INTERSECTIONS(1) |
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue