|
Blender V4.3
|
#include "kernel/device/cpu/compat.h"#include "kernel/device/cpu/globals.h"#include "kernel/device/cpu/image.h"#include "kernel/integrator/state.h"#include "kernel/integrator/state_flow.h"#include "kernel/integrator/state_util.h"#include "kernel/integrator/init_from_camera.h"#include "kernel/integrator/init_from_bake.h"#include "kernel/integrator/intersect_closest.h"#include "kernel/integrator/intersect_shadow.h"#include "kernel/integrator/intersect_subsurface.h"#include "kernel/integrator/intersect_volume_stack.h"#include "kernel/integrator/shade_background.h"#include "kernel/integrator/shade_light.h"#include "kernel/integrator/shade_shadow.h"#include "kernel/integrator/shade_surface.h"#include "kernel/integrator/shade_volume.h"#include "kernel/integrator/megakernel.h"#include "kernel/film/adaptive_sampling.h"#include "kernel/film/cryptomatte_passes.h"#include "kernel/film/read.h"#include "kernel/bake/bake.h"Go to the source code of this file.
Macros | |
| #define | KERNEL_INVOKE(name, ...) integrator_##name(__VA_ARGS__) |
| #define | DEFINE_INTEGRATOR_INIT_KERNEL(name) |
| #define | DEFINE_INTEGRATOR_KERNEL(name) |
| #define | DEFINE_INTEGRATOR_SHADE_KERNEL(name) |
| #define | DEFINE_INTEGRATOR_SHADOW_KERNEL(name) |
| #define | DEFINE_INTEGRATOR_SHADOW_SHADE_KERNEL(name) |
| #define | KERNEL_FILM_CONVERT_FUNCTION(name, is_float) |
| #define DEFINE_INTEGRATOR_INIT_KERNEL | ( | name | ) |
Definition at line 63 of file kernel_arch_impl.h.
| #define DEFINE_INTEGRATOR_KERNEL | ( | name | ) |
Definition at line 73 of file kernel_arch_impl.h.
| #define DEFINE_INTEGRATOR_SHADE_KERNEL | ( | name | ) |
Definition at line 80 of file kernel_arch_impl.h.
| #define DEFINE_INTEGRATOR_SHADOW_KERNEL | ( | name | ) |
Definition at line 87 of file kernel_arch_impl.h.
| #define DEFINE_INTEGRATOR_SHADOW_SHADE_KERNEL | ( | name | ) |
Definition at line 94 of file kernel_arch_impl.h.
| #define KERNEL_FILM_CONVERT_FUNCTION | ( | name, | |
| is_float ) |
Definition at line 253 of file kernel_arch_impl.h.
| #define KERNEL_INVOKE | ( | name, | |
| ... ) integrator_##name(__VA_ARGS__) |
Definition at line 58 of file kernel_arch_impl.h.
| bool KERNEL_FUNCTION_FULL_NAME adaptive_sampling_convergence_check | ( | const KernelGlobalsCPU * | kg, |
| ccl_global float * | render_buffer, | ||
| int | x, | ||
| int | y, | ||
| float | threshold, | ||
| int | reset, | ||
| int | offset, | ||
| int | stride ) |
Definition at line 161 of file kernel_arch_impl.h.
References adaptive_sampling_convergence_check(), film_adaptive_sampling_convergence_check(), KERNEL_ARCH, render_buffer, and reset().
Referenced by adaptive_sampling_convergence_check().
| void KERNEL_FUNCTION_FULL_NAME adaptive_sampling_filter_x | ( | const KernelGlobalsCPU * | kg, |
| ccl_global float * | render_buffer, | ||
| int | y, | ||
| int | start_x, | ||
| int | width, | ||
| int | offset, | ||
| int | stride ) |
Definition at line 180 of file kernel_arch_impl.h.
References adaptive_sampling_filter_x(), film_adaptive_sampling_filter_x(), KERNEL_ARCH, and render_buffer.
Referenced by adaptive_sampling_filter_x().
| void KERNEL_FUNCTION_FULL_NAME adaptive_sampling_filter_y | ( | const KernelGlobalsCPU * | kg, |
| ccl_global float * | render_buffer, | ||
| int | x, | ||
| int | start_y, | ||
| int | height, | ||
| int | offset, | ||
| int | stride ) |
Definition at line 195 of file kernel_arch_impl.h.
References adaptive_sampling_filter_y(), film_adaptive_sampling_filter_y(), KERNEL_ARCH, and render_buffer.
Referenced by adaptive_sampling_filter_y().
| void KERNEL_FUNCTION_FULL_NAME cryptomatte_postprocess | ( | const KernelGlobalsCPU * | kg, |
| ccl_global float * | render_buffer, | ||
| int | pixel_index ) |
Definition at line 214 of file kernel_arch_impl.h.
References cryptomatte_postprocess(), film_cryptomatte_post(), KERNEL_ARCH, and render_buffer.
Referenced by cryptomatte_postprocess().
| void KERNEL_FUNCTION_FULL_NAME shader_eval_background | ( | const KernelGlobalsCPU * | kg, |
| const KernelShaderEvalInput * | input, | ||
| float * | output, | ||
| const int | offset ) |
Definition at line 132 of file kernel_arch_impl.h.
References KERNEL_ARCH, kernel_background_evaluate(), and shader_eval_background().
Referenced by shader_eval_background().
| void KERNEL_FUNCTION_FULL_NAME shader_eval_curve_shadow_transparency | ( | const KernelGlobalsCPU * | kg, |
| const KernelShaderEvalInput * | input, | ||
| float * | output, | ||
| const int | offset ) |
Definition at line 144 of file kernel_arch_impl.h.
References KERNEL_ARCH, kernel_curve_shadow_transparency_evaluate(), and shader_eval_curve_shadow_transparency().
Referenced by shader_eval_curve_shadow_transparency().
| void KERNEL_FUNCTION_FULL_NAME shader_eval_displace | ( | const KernelGlobalsCPU * | kg, |
| const KernelShaderEvalInput * | input, | ||
| float * | output, | ||
| const int | offset ) |
Definition at line 120 of file kernel_arch_impl.h.
References KERNEL_ARCH, kernel_displace_evaluate(), and shader_eval_displace().
Referenced by shader_eval_displace().