From: Samuel Pitoiset Date: Wed, 21 Aug 2019 08:53:57 +0000 (+0200) Subject: radv/gfx10: do not use NGG with NAVI14 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a4e6e59db82e61b47ef905f28dde80ae36a67d35;p=mesa.git radv/gfx10: do not use NGG with NAVI14 Cc: 19.2 Signed-off-by: Samuel Pitoiset Reviewed-by: Bas Nieuwenhuizen --- diff --git a/src/amd/vulkan/radv_pipeline.c b/src/amd/vulkan/radv_pipeline.c index 2fdf241cb66..e43b77b192e 100644 --- a/src/amd/vulkan/radv_pipeline.c +++ b/src/amd/vulkan/radv_pipeline.c @@ -2320,6 +2320,7 @@ radv_fill_shader_keys(struct radv_device *device, } if (device->physical_device->rad_info.chip_class >= GFX10 && + device->physical_device->rad_info.family != CHIP_NAVI14 && !(device->instance->debug_flags & RADV_DEBUG_NO_NGG)) { if (nir[MESA_SHADER_TESS_CTRL]) { keys[MESA_SHADER_TESS_EVAL].vs_common_out.as_ngg = true;