Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/kernel/device/cpu/kernel_arch_impl.h
| Show First 20 Lines • Show All 130 Lines • ▼ Show 20 Lines | |||||
| { | { | ||||
| #ifdef KERNEL_STUB | #ifdef KERNEL_STUB | ||||
| STUB_ASSERT(KERNEL_ARCH, shader_eval_background); | STUB_ASSERT(KERNEL_ARCH, shader_eval_background); | ||||
| #else | #else | ||||
| kernel_background_evaluate(kg, input, output, offset); | kernel_background_evaluate(kg, input, output, offset); | ||||
| #endif | #endif | ||||
| } | } | ||||
| void KERNEL_FUNCTION_FULL_NAME(shader_eval_curve_shadow_transparency)( | |||||
| const KernelGlobals *kg, const KernelShaderEvalInput *input, float *output, const int offset) | |||||
| { | |||||
| #ifdef KERNEL_STUB | |||||
| STUB_ASSERT(KERNEL_ARCH, shader_eval_curve_shadow_transparency); | |||||
| #else | |||||
| kernel_curve_shadow_transparency_evaluate(kg, input, output, offset); | |||||
| #endif | |||||
| } | |||||
| /* -------------------------------------------------------------------- | /* -------------------------------------------------------------------- | ||||
| * Adaptive sampling. | * Adaptive sampling. | ||||
| */ | */ | ||||
| bool KERNEL_FUNCTION_FULL_NAME(adaptive_sampling_convergence_check)( | bool KERNEL_FUNCTION_FULL_NAME(adaptive_sampling_convergence_check)( | ||||
| const KernelGlobals *kg, | const KernelGlobals *kg, | ||||
| ccl_global float *render_buffer, | ccl_global float *render_buffer, | ||||
| int x, | int x, | ||||
| ▲ Show 20 Lines • Show All 89 Lines • Show Last 20 Lines | |||||