From: Bas Nieuwenhuizen Date: Sun, 22 Oct 2017 16:43:14 +0000 (+0200) Subject: radv: Disallow indirect outputs for GS on GFX9 as well. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c07d719e8b683e1bf78f187dd17fe4716f4e5e9c;p=mesa.git radv: Disallow indirect outputs for GS on GFX9 as well. Since it also uses the output vector before writing to memory. Fixes: e38685cc62e 'Revert "radv: disable support for VEGA for now."' Reviewed-by: Dave Airlie Reviewed-by: Timothy Arceri --- diff --git a/src/amd/vulkan/radv_shader.c b/src/amd/vulkan/radv_shader.c index 07e68d6032b..6176a2e590d 100644 --- a/src/amd/vulkan/radv_shader.c +++ b/src/amd/vulkan/radv_shader.c @@ -265,9 +265,7 @@ radv_shader_compile_to_nir(struct radv_device *device, indirect_mask |= nir_var_shader_in; } if (!llvm_has_working_vgpr_indexing && - (nir->info.stage == MESA_SHADER_VERTEX || - nir->info.stage == MESA_SHADER_TESS_EVAL || - nir->info.stage == MESA_SHADER_FRAGMENT)) + nir->info.stage != MESA_SHADER_TESS_CTRL) indirect_mask |= nir_var_shader_out; /* TODO: We shouldn't need to do this, however LLVM isn't currently