mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 05:18:08 +02:00
radv: Enable ACO on Navi.
Signed-off-by: Timur Kristóf <timur.kristof@gmail.com> Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
This commit is contained in:
parent
a886ae5162
commit
f53811aeac
1 changed files with 1 additions and 2 deletions
|
|
@ -322,8 +322,7 @@ radv_physical_device_init(struct radv_physical_device *device,
|
|||
radv_handle_env_var_force_family(device);
|
||||
|
||||
device->use_aco = instance->perftest_flags & RADV_PERFTEST_ACO;
|
||||
if ((device->rad_info.chip_class < GFX8 ||
|
||||
device->rad_info.chip_class > GFX9) && device->use_aco) {
|
||||
if (device->rad_info.chip_class < GFX8 && device->use_aco) {
|
||||
fprintf(stderr, "WARNING: disabling ACO on unsupported GPUs.\n");
|
||||
device->use_aco = false;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue