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:
authorThomas Dinges <blender@dingto.org>2014-02-27 23:41:36 +0400
committerThomas Dinges <blender@dingto.org>2014-02-27 23:41:36 +0400
commit74ae900c676b5ad7d54857734a16a8527883844c (patch)
tree783101a5ac4d3cb69155c7370cfbb90c76c8a032 /intern/cycles
parent44d79c5ff8b6294d724b78be2bd18562c0be0a19 (diff)
Cycles: Fix mistake in PathRayFlag, one value was used twice.
Diffstat (limited to 'intern/cycles')
-rw-r--r--intern/cycles/kernel/kernel_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/kernel/kernel_types.h b/intern/cycles/kernel/kernel_types.h
index 8d7adb2b6d7..60611d798cb 100644
--- a/intern/cycles/kernel/kernel_types.h
+++ b/intern/cycles/kernel/kernel_types.h
@@ -234,7 +234,7 @@ enum PathRayFlag {
PATH_RAY_DIFFUSE_ANCESTOR = 2048,
PATH_RAY_GLOSSY_ANCESTOR = 4096,
PATH_RAY_BSSRDF_ANCESTOR = 8192,
- PATH_RAY_SINGLE_PASS_DONE = 8192,
+ PATH_RAY_SINGLE_PASS_DONE = 16384,
/* this gives collisions with localview bits
* see: blender_util.h, grr - Campbell */