radv/aco: disable NGG when ACO is used
authorRhys Perry <pendingchaos02@gmail.com>
Thu, 10 Oct 2019 11:10:15 +0000 (12:10 +0100)
committerRhys Perry <pendingchaos02@gmail.com>
Thu, 10 Oct 2019 20:02:36 +0000 (20:02 +0000)
Note that radv_device.c still has to be modified to use ACO with Navi.

Signed-off-by: Rhys Perry <pendingchaos02@gmail.com>
Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
Reviewed-By: Timur Kristóf <timur.kristof@gmail.com>
src/amd/vulkan/radv_device.c

index 582ab22..cf57a44 100644 (file)
@@ -339,6 +339,10 @@ radv_physical_device_init(struct radv_physical_device *device,
        device->use_ngg = device->rad_info.chip_class >= GFX10 &&
                          device->rad_info.family != CHIP_NAVI14 &&
                          !(device->instance->debug_flags & RADV_DEBUG_NO_NGG);
+       if (device->use_aco && device->use_ngg) {
+               fprintf(stderr, "WARNING: disabling NGG because ACO is used.\n");
+               device->use_ngg = false;
+       }
 
        device->use_ngg_streamout = false;