Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/render/integrator.h
| Show First 20 Lines • Show All 60 Lines • ▼ Show 20 Lines | public: | ||||
| int mesh_light_samples; | int mesh_light_samples; | ||||
| int subsurface_samples; | int subsurface_samples; | ||||
| int volume_samples; | int volume_samples; | ||||
| bool sample_all_lights_direct; | bool sample_all_lights_direct; | ||||
| bool sample_all_lights_indirect; | bool sample_all_lights_indirect; | ||||
| enum Method { | enum Method { | ||||
| BRANCHED_PATH = 0, | BRANCHED_PATH = 0, | ||||
| PATH = 1 | PATH = 1, | ||||
| NUM_METHODS, | |||||
| }; | }; | ||||
| Method method; | Method method; | ||||
| SamplingPattern sampling_pattern; | SamplingPattern sampling_pattern; | ||||
| bool need_update; | bool need_update; | ||||
| Show All 14 Lines | |||||