From 25d216724bc195d25aaaf336ab1cd3e7c55d78bf Mon Sep 17 00:00:00 2001 From: Jacques Lucke Date: Tue, 24 May 2022 15:53:02 +0200 Subject: Cleanup: make format --- intern/cycles/kernel/device/cpu/image.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'intern/cycles/kernel') diff --git a/intern/cycles/kernel/device/cpu/image.h b/intern/cycles/kernel/device/cpu/image.h index 4963a732916..7809ec5f4a7 100644 --- a/intern/cycles/kernel/device/cpu/image.h +++ b/intern/cycles/kernel/device/cpu/image.h @@ -818,11 +818,13 @@ ccl_device float4 kernel_tex_image_interp_3d(KernelGlobals kg, case IMAGE_DATA_TYPE_NANOVDB_FLOAT3: return NanoVDBInterpolator::interp_3d(info, P.x, P.y, P.z, interp); case IMAGE_DATA_TYPE_NANOVDB_FPN: { - const float f = NanoVDBInterpolator::interp_3d(info, P.x, P.y, P.z, interp); + const float f = NanoVDBInterpolator::interp_3d( + info, P.x, P.y, P.z, interp); return make_float4(f, f, f, 1.0f); } case IMAGE_DATA_TYPE_NANOVDB_FP16: { - const float f = NanoVDBInterpolator::interp_3d(info, P.x, P.y, P.z, interp); + const float f = NanoVDBInterpolator::interp_3d( + info, P.x, P.y, P.z, interp); return make_float4(f, f, f, 1.0f); } #endif -- cgit v1.2.3