Raised AMD CEDAR on Linux from unsupported to limited support

There is a workaround available by setting the environment variable `R600_DEBUG=nosb`.
This commit is contained in:
Jeroen Bakker 2020-12-09 12:10:32 +01:00
parent 3a23f18e02
commit 55d14210cc
1 changed files with 3 additions and 1 deletions

View File

@ -152,8 +152,10 @@ void GLBackend::platform_init()
}
}
if (GPU_type_matches(GPU_DEVICE_ATI, GPU_OS_UNIX, GPU_DRIVER_ANY)) {
/* Platform seems to work when SB backend is disabled. This can be done
* by adding the environment variable `R600_DEBUG=nosb`. */
if (strstr(renderer, "AMD CEDAR")) {
GPG.support_level = GPU_SUPPORT_LEVEL_UNSUPPORTED;
GPG.support_level = GPU_SUPPORT_LEVEL_LIMITED;
}
}
}