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:
authorBrecht Van Lommel <brecht@blender.org>2021-11-10 22:19:09 +0300
committerBrecht Van Lommel <brecht@blender.org>2021-11-10 22:19:09 +0300
commit3fa86f4b280cbc6ccc18993c089b94dda45afa34 (patch)
treecd4608ca29636babed9dbc8ed9e7c37478422fce /intern/cycles/device
parentabf62d06d1c70c11fcb3a7f2b73eaa3fb03d4616 (diff)
parent7689f501e2c3beb3535e4a390971d7b0fde74ee9 (diff)
Merge branch 'blender-v3.0-release'
Diffstat (limited to 'intern/cycles/device')
-rw-r--r--intern/cycles/device/hip/device_impl.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/intern/cycles/device/hip/device_impl.cpp b/intern/cycles/device/hip/device_impl.cpp
index e8482772186..bb0573abf8d 100644
--- a/intern/cycles/device/hip/device_impl.cpp
+++ b/intern/cycles/device/hip/device_impl.cpp
@@ -1160,6 +1160,8 @@ bool HIPDevice::should_use_graphics_interop()
* possible, but from the empiric measurements it can be considerably slower than using naive
* pixels copy. */
+ /* Disable graphics interop for now, because of driver bug in 21.40. See T92972 */
+# if 0
HIPContextScope scope(this);
int num_all_devices = 0;
@@ -1178,6 +1180,7 @@ bool HIPDevice::should_use_graphics_interop()
return true;
}
}
+# endif
return false;
}