Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/render/scene.h
| Show First 20 Lines • Show All 338 Lines • ▼ Show 20 Lines | protected: | ||||
| bool shadow_catcher_modified_ = true; | bool shadow_catcher_modified_ = true; | ||||
| /* Maximum number of closure during session lifetime. */ | /* Maximum number of closure during session lifetime. */ | ||||
| int max_closure_global; | int max_closure_global; | ||||
| /* Get maximum number of closures to be used in kernel. */ | /* Get maximum number of closures to be used in kernel. */ | ||||
| int get_max_closure_count(); | int get_max_closure_count(); | ||||
| /* Get size of a volume stack needed to render this scene. */ | |||||
| int get_volume_stack_size() const; | |||||
| template<typename T> void delete_node_impl(T *node) | template<typename T> void delete_node_impl(T *node) | ||||
| { | { | ||||
| delete node; | delete node; | ||||
| } | } | ||||
| }; | }; | ||||
| template<> Light *Scene::create_node<Light>(); | template<> Light *Scene::create_node<Light>(); | ||||
| ▲ Show 20 Lines • Show All 55 Lines • Show Last 20 Lines | |||||