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:
authorKévin Dietrich <kevin.dietrich@mailoo.org>2022-03-08 15:48:47 +0300
committerKévin Dietrich <kevin.dietrich@mailoo.org>2022-03-08 15:48:47 +0300
commit6f8e65cd7aa9598d7c440d2ac05e51c241836662 (patch)
tree5e6b361423d5c7928ab6de2b29a5353746f8fe5c /source/blender/gpu/opengl
parent64a5fd7a1dce5ea4d24bcced42d885b165cc2d41 (diff)
parentd5e4cab76c625c45b73868cf27021de1fada2830 (diff)
Merge remote-tracking branch 'origin/blender-v3.1-release'
Diffstat (limited to 'source/blender/gpu/opengl')
-rw-r--r--source/blender/gpu/opengl/gl_backend.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/gpu/opengl/gl_backend.cc b/source/blender/gpu/opengl/gl_backend.cc
index 302d8249914..f0d7a23ef82 100644
--- a/source/blender/gpu/opengl/gl_backend.cc
+++ b/source/blender/gpu/opengl/gl_backend.cc
@@ -270,6 +270,11 @@ static void detect_workarounds()
GCaps.shader_image_load_store_support = false;
GCaps.broken_amd_driver = true;
}
+ /* Compute shaders have some issues with those versions (see T94936). */
+ if (GPU_type_matches(GPU_DEVICE_ATI, GPU_OS_ANY, GPU_DRIVER_OFFICIAL) &&
+ (strstr(version, "4.5.14831") || strstr(version, "4.5.14760"))) {
+ GCaps.compute_shader_support = false;
+ }
/* We have issues with this specific renderer. (see T74024) */
if (GPU_type_matches(GPU_DEVICE_ATI, GPU_OS_UNIX, GPU_DRIVER_OPENSOURCE) &&
(strstr(renderer, "AMD VERDE") || strstr(renderer, "AMD KAVERI") ||