Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/device/cpu/kernel.h
| Show All 36 Lines | using IntegratorShadeFunction = CPUKernelFunction<void (*)( | ||||
| const KernelGlobalsCPU *kg, IntegratorStateCPU *state, ccl_global float *render_buffer)>; | const KernelGlobalsCPU *kg, IntegratorStateCPU *state, ccl_global float *render_buffer)>; | ||||
| using IntegratorInitFunction = CPUKernelFunction<bool (*)(const KernelGlobalsCPU *kg, | using IntegratorInitFunction = CPUKernelFunction<bool (*)(const KernelGlobalsCPU *kg, | ||||
| IntegratorStateCPU *state, | IntegratorStateCPU *state, | ||||
| KernelWorkTile *tile, | KernelWorkTile *tile, | ||||
| ccl_global float *render_buffer)>; | ccl_global float *render_buffer)>; | ||||
| IntegratorInitFunction integrator_init_from_camera; | IntegratorInitFunction integrator_init_from_camera; | ||||
| IntegratorInitFunction integrator_init_from_bake; | IntegratorInitFunction integrator_init_from_bake; | ||||
| IntegratorFunction integrator_intersect_closest; | IntegratorShadeFunction integrator_intersect_closest; | ||||
| IntegratorFunction integrator_intersect_shadow; | IntegratorFunction integrator_intersect_shadow; | ||||
| IntegratorFunction integrator_intersect_subsurface; | IntegratorFunction integrator_intersect_subsurface; | ||||
| IntegratorFunction integrator_intersect_volume_stack; | IntegratorFunction integrator_intersect_volume_stack; | ||||
| IntegratorShadeFunction integrator_shade_background; | IntegratorShadeFunction integrator_shade_background; | ||||
| IntegratorShadeFunction integrator_shade_light; | IntegratorShadeFunction integrator_shade_light; | ||||
| IntegratorShadeFunction integrator_shade_shadow; | IntegratorShadeFunction integrator_shade_shadow; | ||||
| IntegratorShadeFunction integrator_shade_surface; | IntegratorShadeFunction integrator_shade_surface; | ||||
| IntegratorShadeFunction integrator_shade_volume; | IntegratorShadeFunction integrator_shade_volume; | ||||
| ▲ Show 20 Lines • Show All 92 Lines • Show Last 20 Lines | |||||