Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/integrator/denoiser_device.cpp
| Show All 10 Lines | |||||
| * distributed under the License is distributed on an "AS IS" BASIS, | * distributed under the License is distributed on an "AS IS" BASIS, | ||||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||||
| * See the License for the specific language governing permissions and | * See the License for the specific language governing permissions and | ||||
| * limitations under the License. | * limitations under the License. | ||||
| */ | */ | ||||
| #include "integrator/denoiser_device.h" | #include "integrator/denoiser_device.h" | ||||
| #include "device/denoise.h" | |||||
| #include "device/device.h" | #include "device/device.h" | ||||
| #include "device/device_denoise.h" | #include "device/memory.h" | ||||
| #include "device/device_memory.h" | #include "device/queue.h" | ||||
| #include "device/device_queue.h" | #include "session/buffers.h" | ||||
| #include "render/buffers.h" | #include "util/log.h" | ||||
| #include "util/util_logging.h" | #include "util/progress.h" | ||||
| #include "util/util_progress.h" | |||||
| CCL_NAMESPACE_BEGIN | CCL_NAMESPACE_BEGIN | ||||
| DeviceDenoiser::DeviceDenoiser(Device *path_trace_device, const DenoiseParams ¶ms) | DeviceDenoiser::DeviceDenoiser(Device *path_trace_device, const DenoiseParams ¶ms) | ||||
| : Denoiser(path_trace_device, params) | : Denoiser(path_trace_device, params) | ||||
| { | { | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 73 Lines • Show Last 20 Lines | |||||