From 669befdfbe487f76c65f54e3da0013d140d56893 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 1 Jun 2020 00:11:17 +0200 Subject: Cycles: add Intel OpenImageDenoise support for viewport denoising Compared to Optix denoise, this is usually slower since there is no GPU acceleration. Some optimizations may still be possible, in avoid copies to the GPU and/or denoising less often. The main thing is that this adds viewport denoising support for computers without an NVIDIA GPU (as long as the CPU supports SSE 4.1, which is nearly all of them). Ref T76259 --- intern/cycles/device/device_task.h | 1 + 1 file changed, 1 insertion(+) (limited to 'intern/cycles/device/device_task.h') diff --git a/intern/cycles/device/device_task.h b/intern/cycles/device/device_task.h index 1ad8e0d9485..aeb5ff72e89 100644 --- a/intern/cycles/device/device_task.h +++ b/intern/cycles/device/device_task.h @@ -34,6 +34,7 @@ class Tile; enum DenoiserType { DENOISER_NLM = 1, DENOISER_OPTIX = 2, + DENOISER_OPENIMAGEDENOISE = 4, DENOISER_NUM, DENOISER_NONE = 0, -- cgit v1.2.3