diff options
author | Marek Olšák <[email protected]> | 2017-02-22 19:56:26 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2017-03-01 13:36:57 +0000 |
commit | 03982603f0c56bc57df04663c977c4b474263ff4 (patch) | |
tree | 4541267a093f4b09e94c3d25bd455eb761dd9854 | |
parent | 0a8df0685e7a9d6db3a1765a9de701565c759493 (diff) |
radeonsi: fix broken tessellation on Carrizo and Stoney
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=99850
Cc: 13.0 17.0 <[email protected]>
Reviewed-by: Alex Deucher <[email protected]>
(cherry picked from commit 35915af6c9ab4bdc0f1f8584ca346602405bd7e4)
-rw-r--r-- | src/gallium/drivers/radeonsi/si_state_shaders.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeonsi/si_state_shaders.c b/src/gallium/drivers/radeonsi/si_state_shaders.c index 76e748f1409..caf20e59b57 100644 --- a/src/gallium/drivers/radeonsi/si_state_shaders.c +++ b/src/gallium/drivers/radeonsi/si_state_shaders.c @@ -2213,7 +2213,9 @@ static bool si_update_spi_tmpring_size(struct si_context *sctx) static void si_init_tess_factor_ring(struct si_context *sctx) { - bool double_offchip_buffers = sctx->b.chip_class >= CIK; + bool double_offchip_buffers = sctx->b.chip_class >= CIK && + sctx->b.family != CHIP_CARRIZO && + sctx->b.family != CHIP_STONEY; unsigned max_offchip_buffers_per_se = double_offchip_buffers ? 128 : 64; unsigned max_offchip_buffers = max_offchip_buffers_per_se * sctx->screen->b.info.max_se; |