From 2c02a04c464c2f5c6e211ceb7b21255eaca7e087 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Wed, 1 Nov 2017 19:00:42 +0100 Subject: Code refactor: remove emission and background closures, sum directly. --- intern/cycles/kernel/split/kernel_lamp_emission.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'intern/cycles/kernel/split/kernel_lamp_emission.h') diff --git a/intern/cycles/kernel/split/kernel_lamp_emission.h b/intern/cycles/kernel/split/kernel_lamp_emission.h index 448456d167d..d5099ac66e6 100644 --- a/intern/cycles/kernel/split/kernel_lamp_emission.h +++ b/intern/cycles/kernel/split/kernel_lamp_emission.h @@ -58,9 +58,9 @@ ccl_device void kernel_lamp_emission(KernelGlobals *kg) float3 throughput = kernel_split_state.throughput[ray_index]; Ray ray = kernel_split_state.ray[ray_index]; ccl_global Intersection *isect = &kernel_split_state.isect[ray_index]; - ShaderData *emission_sd = &kernel_split_state.sd_DL_shadow[ray_index]; + ShaderData *sd = &kernel_split_state.sd[ray_index]; - kernel_path_lamp_emission(kg, state, &ray, throughput, isect, emission_sd, L); + kernel_path_lamp_emission(kg, state, &ray, throughput, isect, sd, L); } } -- cgit v1.2.3