Welcome to mirror list, hosted at ThFree Co, Russian Federation.

denoiser_optix.cpp « integrator « cycles « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dab779e7972ed4ee16b5fe1bb4df51b8bea5c3a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* SPDX-License-Identifier: Apache-2.0
 * Copyright 2011-2022 Blender Foundation */

#include "integrator/denoiser_optix.h"

#include "device/denoise.h"
#include "device/device.h"

CCL_NAMESPACE_BEGIN

OptiXDenoiser::OptiXDenoiser(Device *path_trace_device, const DenoiseParams &params)
    : DeviceDenoiser(path_trace_device, params)
{
}

uint OptiXDenoiser::get_device_type_mask() const
{
  return DEVICE_MASK_OPTIX;
}

CCL_NAMESPACE_END