GPU: Extend mac blitting workaround to AMD Radeon R9 familly

This commit is contained in:
Clément Foucault 2018-10-30 13:01:25 +01:00
parent c760285ae0
commit f3961ab46d
1 changed files with 1 additions and 1 deletions

View File

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