diff --git a/.pick_status.json b/.pick_status.json index 6259698ab62..b8c57706eaf 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -121,7 +121,7 @@ "description": "radv: do not enable NGG culling on GFX11", "nominated": true, "nomination_type": 0, - "resolution": 0, + "resolution": 1, "main_sha": null, "because_sha": null }, diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c index 16b637e2eb8..b1e816f3dfb 100644 --- a/src/amd/vulkan/radv_device.c +++ b/src/amd/vulkan/radv_device.c @@ -869,8 +869,9 @@ radv_physical_device_try_create(struct radv_instance *instance, drmDevicePtr drm !(device->instance->debug_flags & RADV_DEBUG_NO_NGG)) || device->rad_info.gfx_level >= GFX11; + /* TODO: Investigate if NGG culling helps on GFX11. */ device->use_ngg_culling = device->use_ngg && device->rad_info.max_render_backends > 1 && - (device->rad_info.gfx_level >= GFX10_3 || + (device->rad_info.gfx_level == GFX10_3 || (device->instance->perftest_flags & RADV_PERFTEST_NGGC)) && !(device->instance->debug_flags & RADV_DEBUG_NO_NGGC);