From 74eda0b6fc413d41d4c6d39bd86f5efbc79a0268 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 17 Apr 2023 17:47:29 +0200 Subject: [PATCH] Fix build error on macOS after previous commit --- intern/cycles/kernel/data_template.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/intern/cycles/kernel/data_template.h b/intern/cycles/kernel/data_template.h index 178b1fbe57b..8851a2b62c7 100644 --- a/intern/cycles/kernel/data_template.h +++ b/intern/cycles/kernel/data_template.h @@ -41,9 +41,9 @@ KERNEL_STRUCT_MEMBER(background, int, lightgroup) /* Light Index. */ KERNEL_STRUCT_MEMBER(background, int, light_index) /* Padding. */ -KERNEL_STRUCT_MEMBER(integrator, int, pad1) -KERNEL_STRUCT_MEMBER(integrator, int, pad2) -KERNEL_STRUCT_MEMBER(integrator, int, pad3) +KERNEL_STRUCT_MEMBER(background, int, pad1) +KERNEL_STRUCT_MEMBER(background, int, pad2) +KERNEL_STRUCT_MEMBER(background, int, pad3) KERNEL_STRUCT_END(KernelBackground) /* BVH: own BVH2 if no native device acceleration struct used. */