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:
authorSergey Sharybin <sergey.vfx@gmail.com>2016-09-29 16:48:10 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2016-09-29 16:48:10 +0300
commit333366dbcf56c30bc9dbd0e43ec57401e34cb798 (patch)
tree50f3edb65237c78aef6c929728ebafc5aafbff13 /intern/cycles/device/device_cuda.cpp
parent57a2015f5674ac237fd35f5ec182362e7ff6d79e (diff)
Cycles: Fix typo in shader cancel routines
Diffstat (limited to 'intern/cycles/device/device_cuda.cpp')
-rw-r--r--intern/cycles/device/device_cuda.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/device/device_cuda.cpp b/intern/cycles/device/device_cuda.cpp
index 147e21d798a..7f8a0bf2f43 100644
--- a/intern/cycles/device/device_cuda.cpp
+++ b/intern/cycles/device/device_cuda.cpp
@@ -993,7 +993,7 @@ public:
cuda_assert(cuCtxSynchronize());
if(task.get_cancel()) {
- canceled = false;
+ canceled = true;
break;
}
}