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>2013-08-23 18:34:34 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2013-08-23 18:34:34 +0400
commit01e22d1b9f3606d97f06c2d8a2bc969214322e9c (patch)
treefcbb80481ea74c731891b5151c94b1c0b9cbb3d1 /intern/cycles/render/integrator.h
parent22f48748771a96526c3abcfd6583f7cf86aa88c8 (diff)
Cycles: more code refactoring to rename things internally as well. Also change
property name back so we keep compatibility.
Diffstat (limited to 'intern/cycles/render/integrator.h')
-rw-r--r--intern/cycles/render/integrator.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/intern/cycles/render/integrator.h b/intern/cycles/render/integrator.h
index 10248fd5ad7..a58b4d25cd3 100644
--- a/intern/cycles/render/integrator.h
+++ b/intern/cycles/render/integrator.h
@@ -57,7 +57,12 @@ public:
int mesh_light_samples;
int subsurface_samples;
- bool progressive;
+ enum Method {
+ BRANCHED_PATH = 0,
+ PATH = 1
+ };
+
+ Method method;
SamplingPattern sampling_pattern;