Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/scene/scene.cpp
| Show First 20 Lines • Show All 70 Lines • ▼ Show 20 Lines | : bvh_nodes(device, "bvh_nodes", MEM_GLOBAL), | ||||
| lights(device, "lights", MEM_GLOBAL), | lights(device, "lights", MEM_GLOBAL), | ||||
| light_background_marginal_cdf(device, "light_background_marginal_cdf", MEM_GLOBAL), | light_background_marginal_cdf(device, "light_background_marginal_cdf", MEM_GLOBAL), | ||||
| light_background_conditional_cdf(device, "light_background_conditional_cdf", MEM_GLOBAL), | light_background_conditional_cdf(device, "light_background_conditional_cdf", MEM_GLOBAL), | ||||
| particles(device, "particles", MEM_GLOBAL), | particles(device, "particles", MEM_GLOBAL), | ||||
| svm_nodes(device, "svm_nodes", MEM_GLOBAL), | svm_nodes(device, "svm_nodes", MEM_GLOBAL), | ||||
| shaders(device, "shaders", MEM_GLOBAL), | shaders(device, "shaders", MEM_GLOBAL), | ||||
| lookup_table(device, "lookup_table", MEM_GLOBAL), | lookup_table(device, "lookup_table", MEM_GLOBAL), | ||||
| sample_pattern_lut(device, "sample_pattern_lut", MEM_GLOBAL), | sample_pattern_lut(device, "sample_pattern_lut", MEM_GLOBAL), | ||||
| ies_lights(device, "ies", MEM_GLOBAL) | ies_lights(device, "ies", MEM_GLOBAL), | ||||
| light_path_aovs(device, "light_path_aovs", MEM_GLOBAL), | |||||
| light_path_states(device, "light_path_states", MEM_GLOBAL), | |||||
| light_path_transitions(device, "light_path_transitions", MEM_GLOBAL) | |||||
| { | { | ||||
| memset((void *)&data, 0, sizeof(data)); | memset((void *)&data, 0, sizeof(data)); | ||||
| } | } | ||||
| Scene::Scene(const SceneParams ¶ms_, Device *device) | Scene::Scene(const SceneParams ¶ms_, Device *device) | ||||
| : name("Scene"), | : name("Scene"), | ||||
| bvh(NULL), | bvh(NULL), | ||||
| default_surface(NULL), | default_surface(NULL), | ||||
| ▲ Show 20 Lines • Show All 921 Lines • Show Last 20 Lines | |||||