diff options
author | Marek Olšák <[email protected]> | 2017-05-05 17:05:05 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2017-05-05 18:55:03 +0200 |
commit | ee5908396e4b0d4be64d8bc486d25c2e95b7fd71 (patch) | |
tree | e34d8ce1d8cbae1f9f5e69683aef191203748b95 /src/gallium/drivers | |
parent | 8b8af19065a5bfd06fd0d97b891cfff807704935 (diff) |
radeonsi: apply the tess+GS hang workaround to Polaris12 as well
Cc: 17.1 <[email protected]>
Reviewed-by: Alex Deucher <[email protected]>
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_state_draw.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeonsi/si_state_draw.c b/src/gallium/drivers/radeonsi/si_state_draw.c index e6a9ee0d199..5f1371a1433 100644 --- a/src/gallium/drivers/radeonsi/si_state_draw.c +++ b/src/gallium/drivers/radeonsi/si_state_draw.c @@ -332,7 +332,8 @@ si_get_init_multi_vgt_param(struct si_screen *sscreen, if (sscreen->b.family == CHIP_TONGA || sscreen->b.family == CHIP_FIJI || sscreen->b.family == CHIP_POLARIS10 || - sscreen->b.family == CHIP_POLARIS11) + sscreen->b.family == CHIP_POLARIS11 || + sscreen->b.family == CHIP_POLARIS12) partial_vs_wave = true; } else { partial_vs_wave = true; |