Refactor: change light linking object storage be dynamically allocated #108090

Closed
Brecht Van Lommel wants to merge 128 commits from light-linking-dna into cycles-light-linking

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
2 changed files with 3 additions and 1 deletions
Showing only changes of commit 7d416ece82 - Show all commits

View File

@ -854,7 +854,7 @@ ccl_device int surface_shader_bsdf_guided_sample_closure(KernelGlobals kg,
ccl_private float *eta,
ccl_private const RNGState *rng_state)
{
int label;
int label = LABEL_NONE;
if (kernel_data.integrator.guiding_directional_sampling_type ==
GUIDING_DIRECTIONAL_SAMPLING_TYPE_PRODUCT_MIS ||
kernel_data.integrator.guiding_directional_sampling_type ==

View File

@ -20,6 +20,8 @@
#include "UI_resources.h"
#include "BLT_translation.h"
#include "node_common.h"
#include "node_geometry_register.hh"