GPU: Add AMD Radeon RX series to macos blitting workaround list

Fixes T55987
This commit is contained in:
2018-11-28 13:19:04 +01:00
parent dd102a4757
commit 52458ab49d

View File

@@ -263,7 +263,10 @@ void gpu_extensions_init(void)
GG.driver = GPU_DRIVER_OFFICIAL;
#if defined(__APPLE__)
if (strstr(renderer, "AMD Radeon Pro") || strstr(renderer, "AMD Radeon R9")) {
if (strstr(renderer, "AMD Radeon Pro") ||
strstr(renderer, "AMD Radeon R9") ||
strstr(renderer, "AMD Radeon RX"))
{
GG.depth_blitting_workaround = true;
}
#endif