From fac69131abf567080cdacbd432df0b837f085ffa Mon Sep 17 00:00:00 2001 From: Ray Molenkamp Date: Tue, 4 Jul 2023 08:26:24 -0600 Subject: [PATCH] Cleanup: make format --- intern/cycles/device/metal/kernel.mm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/intern/cycles/device/metal/kernel.mm b/intern/cycles/device/metal/kernel.mm index a56ad4e5171..9556c3c4716 100644 --- a/intern/cycles/device/metal/kernel.mm +++ b/intern/cycles/device/metal/kernel.mm @@ -296,7 +296,8 @@ void ShaderCache::load_kernel(DeviceKernel device_kernel, # if defined(MAC_OS_VERSION_13_3) if (@available(macOS 13.3, *)) { /* Subtract one to avoid contention with the real-time GPU module. */ - max_mtlcompiler_threads = max(2, int([mtlDevice maximumConcurrentCompilationTaskCount]) - 1); + max_mtlcompiler_threads = max(2, + int([mtlDevice maximumConcurrentCompilationTaskCount]) - 1); } # endif