Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/device/cpu/device.cpp
| Show All 14 Lines | |||||
| */ | */ | ||||
| #include "device/cpu/device.h" | #include "device/cpu/device.h" | ||||
| #include "device/cpu/device_impl.h" | #include "device/cpu/device_impl.h" | ||||
| /* Used for `info.denoisers`. */ | /* Used for `info.denoisers`. */ | ||||
| /* TODO(sergey): The denoisers are probably to be moved completely out of the device into their | /* TODO(sergey): The denoisers are probably to be moved completely out of the device into their | ||||
| * own class. But until then keep API consistent with how it used to work before. */ | * own class. But until then keep API consistent with how it used to work before. */ | ||||
| #include "util/util_openimagedenoise.h" | #include "util/openimagedenoise.h" | ||||
| CCL_NAMESPACE_BEGIN | CCL_NAMESPACE_BEGIN | ||||
| Device *device_cpu_create(const DeviceInfo &info, Stats &stats, Profiler &profiler) | Device *device_cpu_create(const DeviceInfo &info, Stats &stats, Profiler &profiler) | ||||
| { | { | ||||
| return new CPUDevice(info, stats, profiler); | return new CPUDevice(info, stats, profiler); | ||||
| } | } | ||||
| Show All 33 Lines | |||||