Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/render/scene.h
| Show First 20 Lines • Show All 108 Lines • ▼ Show 20 Lines | public: | ||||
| /* lookup tables */ | /* lookup tables */ | ||||
| device_vector<float> lookup_table; | device_vector<float> lookup_table; | ||||
| /* integrator */ | /* integrator */ | ||||
| device_vector<uint> sobol_directions; | device_vector<uint> sobol_directions; | ||||
| /* cpu images */ | /* cpu images */ | ||||
| device_vector<uchar4> tex_byte4_image[TEX_NUM_BYTE4_CPU]; | std::vector<device_vector<uchar4>* > tex_byte4_image; | ||||
| device_vector<float4> tex_float4_image[TEX_NUM_FLOAT4_CPU]; | std::vector<device_vector<float4>* > tex_float4_image; | ||||
| device_vector<float> tex_float_image[TEX_NUM_FLOAT_CPU]; | std::vector<device_vector<float>* > tex_float_image; | ||||
| device_vector<uchar> tex_byte_image[TEX_NUM_BYTE_CPU]; | std::vector<device_vector<uchar>* > tex_byte_image; | ||||
| device_vector<half4> tex_half4_image[TEX_NUM_HALF4_CPU]; | std::vector<device_vector<half4>* > tex_half4_image; | ||||
| device_vector<half> tex_half_image[TEX_NUM_HALF_CPU]; | std::vector<device_vector<half>* > tex_half_image; | ||||
| /* opencl images */ | /* opencl images */ | ||||
| device_vector<uchar4> tex_image_byte4_packed; | device_vector<uchar4> tex_image_byte4_packed; | ||||
| device_vector<float4> tex_image_float4_packed; | device_vector<float4> tex_image_float4_packed; | ||||
| device_vector<uchar> tex_image_byte_packed; | device_vector<uchar> tex_image_byte_packed; | ||||
| device_vector<float> tex_image_float_packed; | device_vector<float> tex_image_float_packed; | ||||
| device_vector<uint4> tex_image_packed_info; | device_vector<uint4> tex_image_packed_info; | ||||
| KernelData data; | KernelData data; | ||||
| ▲ Show 20 Lines • Show All 118 Lines • Show Last 20 Lines | |||||