From c746b52353f12690b4f0d8099e8e13dc2603d2e1 Mon Sep 17 00:00:00 2001 From: Joey Litalien Date: Sun, 5 May 2019 19:32:06 -0400 Subject: [PATCH] Fixed order in constructor of m_pathSampler --- src/integrators/pssmlt/pssmlt_proc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/integrators/pssmlt/pssmlt_proc.cpp b/src/integrators/pssmlt/pssmlt_proc.cpp index f2c86b6a4..0d75dccd8 100644 --- a/src/integrators/pssmlt/pssmlt_proc.cpp +++ b/src/integrators/pssmlt/pssmlt_proc.cpp @@ -81,7 +81,7 @@ class PSSMLTRenderer : public WorkProcessor { m_directSampler = new PSSMLTSampler(m_origSampler); m_pathSampler = new PathSampler(m_config.technique, m_scene, - m_emitterSampler, m_sensorSampler, m_directSampler, m_config.maxDepth, + m_sensorSampler, m_emitterSampler, m_directSampler, m_config.maxDepth, m_config.rrDepth, m_config.separateDirect, m_config.directSampling); }