* Replace license text in headers with SPDX identifiers. * Remove specific license info from outdated readme.txt, instead leave details to the source files. * Add list of SPDX license identifiers used, and corresponding license texts. * Update copyright dates while we're at it. Ref D14069, T95597
22 lines
440 B
C++
22 lines
440 B
C++
/* 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 ¶ms)
|
|
: DeviceDenoiser(path_trace_device, params)
|
|
{
|
|
}
|
|
|
|
uint OptiXDenoiser::get_device_type_mask() const
|
|
{
|
|
return DEVICE_MASK_OPTIX;
|
|
}
|
|
|
|
CCL_NAMESPACE_END
|