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:
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;