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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2011-10-29 18:27:24 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2011-10-29 18:27:24 +0400
commit238f3a7d343875992f5b9c2ad657f2bc6f148938 (patch)
treeddc809124879b7eef15a708470f9de6bce43118a /intern/cycles/render/integrator.h
parent996f2cd8b2362779e16fdfbd3913231c38e4a623 (diff)
Cycles: seed value to get different noise values from renders, there was a patch
for this but I've implemented it differently.
Diffstat (limited to 'intern/cycles/render/integrator.h')
-rw-r--r--intern/cycles/render/integrator.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/intern/cycles/render/integrator.h b/intern/cycles/render/integrator.h
index 5bab4470089..52032fa1a26 100644
--- a/intern/cycles/render/integrator.h
+++ b/intern/cycles/render/integrator.h
@@ -42,6 +42,9 @@ public:
bool no_caustics;
float blur_caustics;
+
+ int seed;
+
bool need_update;
Integrator();