Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/kernel/integrator/shadow_state_template.h
| Show All 14 Lines | |||||
| */ | */ | ||||
| /********************************* Shadow Path State **************************/ | /********************************* Shadow Path State **************************/ | ||||
| KERNEL_STRUCT_BEGIN(shadow_path) | KERNEL_STRUCT_BEGIN(shadow_path) | ||||
| /* Index of a pixel within the device render buffer. */ | /* Index of a pixel within the device render buffer. */ | ||||
| KERNEL_STRUCT_MEMBER(shadow_path, uint32_t, render_pixel_index, KERNEL_FEATURE_PATH_TRACING) | KERNEL_STRUCT_MEMBER(shadow_path, uint32_t, render_pixel_index, KERNEL_FEATURE_PATH_TRACING) | ||||
| /* Current sample number. */ | /* Current sample number. */ | ||||
| KERNEL_STRUCT_MEMBER(shadow_path, uint16_t, sample, KERNEL_FEATURE_PATH_TRACING) | KERNEL_STRUCT_MEMBER(shadow_path, uint32_t, sample, KERNEL_FEATURE_PATH_TRACING) | ||||
| /* Random number generator seed. */ | /* Random number generator seed. */ | ||||
| KERNEL_STRUCT_MEMBER(shadow_path, uint32_t, rng_hash, KERNEL_FEATURE_PATH_TRACING) | KERNEL_STRUCT_MEMBER(shadow_path, uint32_t, rng_hash, KERNEL_FEATURE_PATH_TRACING) | ||||
| /* Random number dimension offset. */ | /* Random number dimension offset. */ | ||||
| KERNEL_STRUCT_MEMBER(shadow_path, uint16_t, rng_offset, KERNEL_FEATURE_PATH_TRACING) | KERNEL_STRUCT_MEMBER(shadow_path, uint16_t, rng_offset, KERNEL_FEATURE_PATH_TRACING) | ||||
| /* Current ray bounce depth. */ | /* Current ray bounce depth. */ | ||||
| KERNEL_STRUCT_MEMBER(shadow_path, uint16_t, bounce, KERNEL_FEATURE_PATH_TRACING) | KERNEL_STRUCT_MEMBER(shadow_path, uint16_t, bounce, KERNEL_FEATURE_PATH_TRACING) | ||||
| /* Current transparent ray bounce depth. */ | /* Current transparent ray bounce depth. */ | ||||
| KERNEL_STRUCT_MEMBER(shadow_path, uint16_t, transparent_bounce, KERNEL_FEATURE_PATH_TRACING) | KERNEL_STRUCT_MEMBER(shadow_path, uint16_t, transparent_bounce, KERNEL_FEATURE_PATH_TRACING) | ||||
| ▲ Show 20 Lines • Show All 55 Lines • Show Last 20 Lines | |||||