Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Foucault <foucault.clem@gmail.com>2018-10-30 15:01:25 +0300
committerClément Foucault <foucault.clem@gmail.com>2018-10-30 15:04:06 +0300
commitf3961ab46d48c19372cc4f61a7a264541e2ec019 (patch)
tree01d7c5f04e81f62a703af99ca1234d365c6ebde3 /source/blender/gpu
parentc760285ae0176befca4464ce4804ada6ec963054 (diff)
GPU: Extend mac blitting workaround to AMD Radeon R9 familly
Diffstat (limited to 'source/blender/gpu')
-rw-r--r--source/blender/gpu/intern/gpu_extensions.c2
1 files changed, 1 insertions, 1 deletions
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