Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/render/scene.h
| Context not available. | |||||
| class Device; | class Device; | ||||
| class DeviceInfo; | class DeviceInfo; | ||||
| class Film; | class Film; | ||||
| class Embree; | |||||
| class Integrator; | class Integrator; | ||||
| class Light; | class Light; | ||||
| class LightManager; | class LightManager; | ||||
| Context not available. | |||||
| bool use_bvh_cache; | bool use_bvh_cache; | ||||
| bool use_bvh_spatial_split; | bool use_bvh_spatial_split; | ||||
| bool use_qbvh; | bool use_qbvh; | ||||
| bool use_embree; | |||||
| bool persistent_data; | bool persistent_data; | ||||
| SceneParams() | SceneParams() | ||||
| Context not available. | |||||
| use_qbvh = false; | use_qbvh = false; | ||||
| #endif | #endif | ||||
| persistent_data = false; | persistent_data = false; | ||||
| use_embree = false; | |||||
| } | } | ||||
| bool modified(const SceneParams& params) | bool modified(const SceneParams& params) | ||||
| Context not available. | |||||
| && use_bvh_cache == params.use_bvh_cache | && use_bvh_cache == params.use_bvh_cache | ||||
| && use_bvh_spatial_split == params.use_bvh_spatial_split | && use_bvh_spatial_split == params.use_bvh_spatial_split | ||||
| && use_qbvh == params.use_qbvh | && use_qbvh == params.use_qbvh | ||||
| && use_embree == params.use_embree | |||||
| && persistent_data == params.persistent_data); } | && persistent_data == params.persistent_data); } | ||||
| }; | }; | ||||
| Context not available. | |||||
| Film *film; | Film *film; | ||||
| Background *background; | Background *background; | ||||
| Integrator *integrator; | Integrator *integrator; | ||||
| Embree *embree; | |||||
| /* data lists */ | /* data lists */ | ||||
| vector<Object*> objects; | vector<Object*> objects; | ||||
| Context not available. | |||||