Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Stockner <lukas.stockner@freenet.de>2018-07-04 15:22:38 +0300
committerLukas Stockner <lukas.stockner@freenet.de>2018-07-04 15:35:05 +0300
commitb10c64bd2f1dae93c38e2d1cc656ea08151ab704 (patch)
treeba20bd49470254f4194c213740d2be019e87c73f /intern/cycles/device/opencl/opencl_split.cpp
parent969111f9b5b075470a6de995f048d19e25c1b9ea (diff)
Cycles Denoising: Split main function into logical steps
Diffstat (limited to 'intern/cycles/device/opencl/opencl_split.cpp')
-rw-r--r--intern/cycles/device/opencl/opencl_split.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/device/opencl/opencl_split.cpp b/intern/cycles/device/opencl/opencl_split.cpp
index 51d3c7bb10f..86181af7fe0 100644
--- a/intern/cycles/device/opencl/opencl_split.cpp
+++ b/intern/cycles/device/opencl/opencl_split.cpp
@@ -129,7 +129,7 @@ public:
}
else if(task->type == DeviceTask::RENDER) {
RenderTile tile;
- DenoisingTask denoising(this);
+ DenoisingTask denoising(this, *task);
/* Allocate buffer for kernel globals */
device_only_memory<KernelGlobalsDummy> kgbuffer(this, "kernel_globals");