Cycles: Add missing entries in the Integrator constructor and some updates

to the XML API.

(Changes from the standalone repo)
This commit is contained in:
Thomas Dinges 2014-12-17 22:28:33 +01:00
parent cd4d5dcb46
commit 3820d44979
2 changed files with 12 additions and 0 deletions

@ -825,6 +825,14 @@ static void xml_read_background(const XMLReadState& state, pugi::xml_node node)
Shader *shader = state.scene->shaders[state.scene->default_background];
xml_read_bool(&shader->heterogeneous_volume, node, "heterogeneous_volume");
xml_read_int(&shader->volume_interpolation_method, node, "volume_interpolation_method");
if(xml_equal_string(node, "volume_sampling_method", "distance"))
shader->volume_sampling_method = VOLUME_SAMPLING_DISTANCE;
else if(xml_equal_string(node, "volume_sampling_method", "equiangular"))
shader->volume_sampling_method = VOLUME_SAMPLING_EQUIANGULAR;
else if(xml_equal_string(node, "volume_sampling_method", "multiple_importance"))
shader->volume_sampling_method = VOLUME_SAMPLING_MULTIPLE_IMPORTANCE;
xml_read_shader_graph(state, shader, node);
}

@ -59,6 +59,10 @@ Integrator::Integrator()
mesh_light_samples = 1;
subsurface_samples = 1;
volume_samples = 1;
sample_all_lights_direct = true;
sample_all_lights_indirect = true;
method = PATH;
sampling_pattern = SAMPLING_PATTERN_SOBOL;