diff --git a/intern/cycles/device/metal/device_impl.mm b/intern/cycles/device/metal/device_impl.mm index 9bbc03cf87d..9616f625faa 100644 --- a/intern/cycles/device/metal/device_impl.mm +++ b/intern/cycles/device/metal/device_impl.mm @@ -105,7 +105,8 @@ MetalDevice::MetalDevice(const DeviceInfo &info, Stats &stats, Profiler &profile /* Use "Ray tracing with per component motion interpolation" if available. * Requires Apple9 support (https://developer.apple.com/metal/Metal-Feature-Set-Tables.pdf). */ if (use_metalrt && [mtlDevice supportsFamily:MTLGPUFamilyApple9]) { - if (@available(macos 15.0, *)) { + /* Concave motion paths weren't correctly bounded prior to macOS 15.6 (#136253). */ + if (@available(macos 15.6, *)) { use_pcmi = DebugFlags().metal.use_metalrt_pcmi; } } diff --git a/intern/cycles/util/debug.h b/intern/cycles/util/debug.h index 6e9032f7945..ef3b66a8769 100644 --- a/intern/cycles/util/debug.h +++ b/intern/cycles/util/debug.h @@ -102,9 +102,8 @@ class DebugFlags { bool use_async_pso_creation = true; /* Whether to use per-component motion interpolation. - * TODO: Enable by default when "multi step velocity motion blur" fail is fixed. */ - bool use_metalrt_pcmi = false; + bool use_metalrt_pcmi = true; }; /* Get instance of debug flags registry. */