From f3961ab46d48c19372cc4f61a7a264541e2ec019 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Foucault?= Date: Tue, 30 Oct 2018 13:01:25 +0100 Subject: [PATCH] GPU: Extend mac blitting workaround to AMD Radeon R9 familly --- source/blender/gpu/intern/gpu_extensions.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/gpu/intern/gpu_extensions.c b/source/blender/gpu/intern/gpu_extensions.c index 3175a155c16..36e69f96b78 100644 --- a/source/blender/gpu/intern/gpu_extensions.c +++ b/source/blender/gpu/intern/gpu_extensions.c @@ -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