Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/scene/scene.h
| Show First 20 Lines • Show All 121 Lines • ▼ Show 20 Lines | public: | ||||
| device_vector<float> lookup_table; | device_vector<float> lookup_table; | ||||
| /* integrator */ | /* integrator */ | ||||
| device_vector<float> sample_pattern_lut; | device_vector<float> sample_pattern_lut; | ||||
| /* IES lights */ | /* IES lights */ | ||||
| device_vector<float> ies_lights; | device_vector<float> ies_lights; | ||||
| /* light path expressions automata */ | |||||
| device_vector<uint> light_path_aovs; | |||||
| device_vector<KernelLightPathState> light_path_states; | |||||
| device_vector<KernelLightPathTransition> light_path_transitions; | |||||
| KernelData data; | KernelData data; | ||||
| DeviceScene(Device *device); | DeviceScene(Device *device); | ||||
| }; | }; | ||||
| /* Scene Parameters */ | /* Scene Parameters */ | ||||
| class SceneParams { | class SceneParams { | ||||
| ▲ Show 20 Lines • Show All 279 Lines • Show Last 20 Lines | |||||