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_mega.cpp
parent969111f9b5b075470a6de995f048d19e25c1b9ea (diff)
Cycles Denoising: Split main function into logical steps
Diffstat (limited to 'intern/cycles/device/opencl/opencl_mega.cpp')
-rw-r--r--intern/cycles/device/opencl/opencl_mega.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/device/opencl/opencl_mega.cpp b/intern/cycles/device/opencl/opencl_mega.cpp
index ef39cfb5f7d..61c353d7a8a 100644
--- a/intern/cycles/device/opencl/opencl_mega.cpp
+++ b/intern/cycles/device/opencl/opencl_mega.cpp
@@ -107,7 +107,7 @@ public:
}
else if(task->type == DeviceTask::RENDER) {
RenderTile tile;
- DenoisingTask denoising(this);
+ DenoisingTask denoising(this, *task);
/* Keep rendering tiles until done. */
while(task->acquire_tile(this, tile)) {