[Bf-blender-cvs] [f3961ab46d4] blender2.8: GPU: Extend mac blitting workaround to AMD Radeon R9 familly

Clément Foucault noreply at git.blender.org
Tue Oct 30 12:56:05 CET 2018


Commit: f3961ab46d48c19372cc4f61a7a264541e2ec019
Author: Clément Foucault
Date:   Tue Oct 30 13:01:25 2018 +0100
Branches: blender2.8
https://developer.blender.org/rBf3961ab46d48c19372cc4f61a7a264541e2ec019

GPU: Extend mac blitting workaround to AMD Radeon R9 familly

===================================================================

M	source/blender/gpu/intern/gpu_extensions.c

===================================================================

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



More information about the Bf-blender-cvs mailing list