Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/kernel/kernel_types.h
| Show First 20 Lines • Show All 895 Lines • ▼ Show 20 Lines | typedef struct KernelCamera { | ||||
| int type; | int type; | ||||
| /* panorama */ | /* panorama */ | ||||
| int panorama_type; | int panorama_type; | ||||
| float fisheye_fov; | float fisheye_fov; | ||||
| float fisheye_lens; | float fisheye_lens; | ||||
| float4 equirectangular_range; | float4 equirectangular_range; | ||||
| /* stereo */ | |||||
| int pad1, pad2; | |||||
| float interocular_offset; | |||||
| float convergence_distance; | |||||
| /* matrices */ | /* matrices */ | ||||
| Transform cameratoworld; | Transform cameratoworld; | ||||
| Transform rastertocamera; | Transform rastertocamera; | ||||
| /* differentials */ | /* differentials */ | ||||
| float4 dx; | float4 dx; | ||||
| float4 dy; | float4 dy; | ||||
| ▲ Show 20 Lines • Show All 304 Lines • Show Last 20 Lines | |||||