Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/integrator/denoiser_oidn.cpp
| Show All 13 Lines | |||||
| * limitations under the License. | * limitations under the License. | ||||
| */ | */ | ||||
| #include "integrator/denoiser_oidn.h" | #include "integrator/denoiser_oidn.h" | ||||
| #include <array> | #include <array> | ||||
| #include "device/device.h" | #include "device/device.h" | ||||
| #include "device/device_queue.h" | #include "device/queue.h" | ||||
| #include "integrator/pass_accessor_cpu.h" | #include "integrator/pass_accessor_cpu.h" | ||||
| #include "render/buffers.h" | #include "session/buffers.h" | ||||
| #include "util/util_array.h" | #include "util/array.h" | ||||
| #include "util/util_logging.h" | #include "util/log.h" | ||||
| #include "util/util_openimagedenoise.h" | #include "util/openimagedenoise.h" | ||||
| #include "kernel/device/cpu/compat.h" | #include "kernel/device/cpu/compat.h" | ||||
| #include "kernel/device/cpu/kernel.h" | #include "kernel/device/cpu/kernel.h" | ||||
| CCL_NAMESPACE_BEGIN | CCL_NAMESPACE_BEGIN | ||||
| thread_mutex OIDNDenoiser::mutex_; | thread_mutex OIDNDenoiser::mutex_; | ||||
| ▲ Show 20 Lines • Show All 600 Lines • Show Last 20 Lines | |||||