From: Marek Olšák Date: Wed, 24 Jun 2015 09:58:50 +0000 (+0200) Subject: radeonsi: fix a hang with DrawTransformFeedback on 4 SE chips X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d3f4f6b2e9380a91ab61b93c55ab36106345e7b2;p=mesa.git radeonsi: fix a hang with DrawTransformFeedback on 4 SE chips Cc: 10.6 10.5 Acked-by: Christian König Reviewed-by: Alex Deucher --- diff --git a/src/gallium/drivers/radeonsi/si_state_draw.c b/src/gallium/drivers/radeonsi/si_state_draw.c index 2e77d85a80d..e85ed15deb7 100644 --- a/src/gallium/drivers/radeonsi/si_state_draw.c +++ b/src/gallium/drivers/radeonsi/si_state_draw.c @@ -139,6 +139,10 @@ static unsigned si_get_ia_multi_vgt_param(struct si_context *sctx, (info->indirect || info->instance_count > 1)) wd_switch_on_eop = true; + /* USE_OPAQUE doesn't work when WD_SWITCH_ON_EOP is 0. */ + if (info->count_from_stream_output) + wd_switch_on_eop = true; + /* If the WD switch is false, the IA switch must be false too. */ assert(wd_switch_on_eop || !ia_switch_on_eop); }