2023-06-14 16:52:36 +10:00
|
|
|
/* SPDX-FileCopyrightText: 2011-2022 Blender Foundation
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0 */
|
Cycles: merge of cycles-x branch, a major update to the renderer
This includes much improved GPU rendering performance, viewport interactivity,
new shadow catcher, revamped sampling settings, subsurface scattering anisotropy,
new GPU volume sampling, improved PMJ sampling pattern, and more.
Some features have also been removed or changed, breaking backwards compatibility.
Including the removal of the OpenCL backend, for which alternatives are under
development.
Release notes and code docs:
https://wiki.blender.org/wiki/Reference/Release_Notes/3.0/Cycles
https://wiki.blender.org/wiki/Source/Render/Cycles
Credits:
* Sergey Sharybin
* Brecht Van Lommel
* Patrick Mours (OptiX backend)
* Christophe Hery (subsurface scattering anisotropy)
* William Leeson (PMJ sampling pattern)
* Alaska (various fixes and tweaks)
* Thomas Dinges (various fixes)
For the full commit history, see the cycles-x branch. This squashes together
all the changes since intermediate changes would often fail building or tests.
Ref T87839, T87837, T87836
Fixes T90734, T89353, T80267, T80267, T77185, T69800
2021-09-20 17:59:20 +02:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2021-10-24 14:19:19 +02:00
|
|
|
#include "device/memory.h"
|
Cycles: merge of cycles-x branch, a major update to the renderer
This includes much improved GPU rendering performance, viewport interactivity,
new shadow catcher, revamped sampling settings, subsurface scattering anisotropy,
new GPU volume sampling, improved PMJ sampling pattern, and more.
Some features have also been removed or changed, breaking backwards compatibility.
Including the removal of the OpenCL backend, for which alternatives are under
development.
Release notes and code docs:
https://wiki.blender.org/wiki/Reference/Release_Notes/3.0/Cycles
https://wiki.blender.org/wiki/Source/Render/Cycles
Credits:
* Sergey Sharybin
* Brecht Van Lommel
* Patrick Mours (OptiX backend)
* Christophe Hery (subsurface scattering anisotropy)
* William Leeson (PMJ sampling pattern)
* Alaska (various fixes and tweaks)
* Thomas Dinges (various fixes)
For the full commit history, see the cycles-x branch. This squashes together
all the changes since intermediate changes would often fail building or tests.
Ref T87839, T87837, T87836
Fixes T90734, T89353, T80267, T80267, T77185, T69800
2021-09-20 17:59:20 +02:00
|
|
|
#include "graph/node.h"
|
2021-10-24 14:19:19 +02:00
|
|
|
#include "session/buffers.h"
|
Cycles: merge of cycles-x branch, a major update to the renderer
This includes much improved GPU rendering performance, viewport interactivity,
new shadow catcher, revamped sampling settings, subsurface scattering anisotropy,
new GPU volume sampling, improved PMJ sampling pattern, and more.
Some features have also been removed or changed, breaking backwards compatibility.
Including the removal of the OpenCL backend, for which alternatives are under
development.
Release notes and code docs:
https://wiki.blender.org/wiki/Reference/Release_Notes/3.0/Cycles
https://wiki.blender.org/wiki/Source/Render/Cycles
Credits:
* Sergey Sharybin
* Brecht Van Lommel
* Patrick Mours (OptiX backend)
* Christophe Hery (subsurface scattering anisotropy)
* William Leeson (PMJ sampling pattern)
* Alaska (various fixes and tweaks)
* Thomas Dinges (various fixes)
For the full commit history, see the cycles-x branch. This squashes together
all the changes since intermediate changes would often fail building or tests.
Ref T87839, T87837, T87836
Fixes T90734, T89353, T80267, T80267, T77185, T69800
2021-09-20 17:59:20 +02:00
|
|
|
|
|
|
|
|
CCL_NAMESPACE_BEGIN
|
|
|
|
|
|
|
|
|
|
enum DenoiserType {
|
|
|
|
|
DENOISER_OPTIX = 2,
|
|
|
|
|
DENOISER_OPENIMAGEDENOISE = 4,
|
|
|
|
|
DENOISER_NUM,
|
|
|
|
|
|
|
|
|
|
DENOISER_NONE = 0,
|
|
|
|
|
DENOISER_ALL = ~0,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* COnstruct human-readable string which denotes the denoiser type. */
|
|
|
|
|
const char *denoiserTypeToHumanReadable(DenoiserType type);
|
|
|
|
|
|
|
|
|
|
typedef int DenoiserTypeMask;
|
|
|
|
|
|
|
|
|
|
enum DenoiserPrefilter {
|
|
|
|
|
/* Best quality of the result without extra processing time, but requires guiding passes to be
|
|
|
|
|
* noise-free. */
|
|
|
|
|
DENOISER_PREFILTER_NONE = 1,
|
|
|
|
|
|
|
|
|
|
/* Denoise color and guiding passes together.
|
|
|
|
|
* Improves quality when guiding passes are noisy using least amount of extra processing time. */
|
|
|
|
|
DENOISER_PREFILTER_FAST = 2,
|
|
|
|
|
|
|
|
|
|
/* Prefilter noisy guiding passes before denoising color.
|
|
|
|
|
* Improves quality when guiding passes are noisy using extra processing time. */
|
|
|
|
|
DENOISER_PREFILTER_ACCURATE = 3,
|
|
|
|
|
|
|
|
|
|
DENOISER_PREFILTER_NUM,
|
|
|
|
|
};
|
|
|
|
|
|
2024-02-06 20:46:48 +01:00
|
|
|
enum DenoiserQuality {
|
|
|
|
|
DENOISER_QUALITY_HIGH = 1,
|
|
|
|
|
DENOISER_QUALITY_BALANCED = 2,
|
2024-05-06 18:56:16 +02:00
|
|
|
DENOISER_QUALITY_FAST = 3,
|
2024-02-06 20:46:48 +01:00
|
|
|
DENOISER_QUALITY_NUM,
|
|
|
|
|
};
|
|
|
|
|
|
Cycles: merge of cycles-x branch, a major update to the renderer
This includes much improved GPU rendering performance, viewport interactivity,
new shadow catcher, revamped sampling settings, subsurface scattering anisotropy,
new GPU volume sampling, improved PMJ sampling pattern, and more.
Some features have also been removed or changed, breaking backwards compatibility.
Including the removal of the OpenCL backend, for which alternatives are under
development.
Release notes and code docs:
https://wiki.blender.org/wiki/Reference/Release_Notes/3.0/Cycles
https://wiki.blender.org/wiki/Source/Render/Cycles
Credits:
* Sergey Sharybin
* Brecht Van Lommel
* Patrick Mours (OptiX backend)
* Christophe Hery (subsurface scattering anisotropy)
* William Leeson (PMJ sampling pattern)
* Alaska (various fixes and tweaks)
* Thomas Dinges (various fixes)
For the full commit history, see the cycles-x branch. This squashes together
all the changes since intermediate changes would often fail building or tests.
Ref T87839, T87837, T87836
Fixes T90734, T89353, T80267, T80267, T77185, T69800
2021-09-20 17:59:20 +02:00
|
|
|
/* NOTE: Is not a real scene node. Using Node API for ease of (de)serialization.
|
|
|
|
|
* The default values here do not really matter as they are always initialized from the
|
|
|
|
|
* Integrator node. */
|
|
|
|
|
class DenoiseParams : public Node {
|
|
|
|
|
public:
|
|
|
|
|
NODE_DECLARE
|
|
|
|
|
|
|
|
|
|
/* Apply denoiser to image. */
|
|
|
|
|
bool use = false;
|
|
|
|
|
|
|
|
|
|
/* Denoiser type. */
|
|
|
|
|
DenoiserType type = DENOISER_OPENIMAGEDENOISE;
|
|
|
|
|
|
|
|
|
|
/* Viewport start sample. */
|
|
|
|
|
int start_sample = 0;
|
|
|
|
|
|
2021-09-22 14:48:01 +10:00
|
|
|
/* Auxiliary passes. */
|
Cycles: merge of cycles-x branch, a major update to the renderer
This includes much improved GPU rendering performance, viewport interactivity,
new shadow catcher, revamped sampling settings, subsurface scattering anisotropy,
new GPU volume sampling, improved PMJ sampling pattern, and more.
Some features have also been removed or changed, breaking backwards compatibility.
Including the removal of the OpenCL backend, for which alternatives are under
development.
Release notes and code docs:
https://wiki.blender.org/wiki/Reference/Release_Notes/3.0/Cycles
https://wiki.blender.org/wiki/Source/Render/Cycles
Credits:
* Sergey Sharybin
* Brecht Van Lommel
* Patrick Mours (OptiX backend)
* Christophe Hery (subsurface scattering anisotropy)
* William Leeson (PMJ sampling pattern)
* Alaska (various fixes and tweaks)
* Thomas Dinges (various fixes)
For the full commit history, see the cycles-x branch. This squashes together
all the changes since intermediate changes would often fail building or tests.
Ref T87839, T87837, T87836
Fixes T90734, T89353, T80267, T80267, T77185, T69800
2021-09-20 17:59:20 +02:00
|
|
|
bool use_pass_albedo = true;
|
|
|
|
|
bool use_pass_normal = true;
|
|
|
|
|
|
2022-01-04 21:39:54 +01:00
|
|
|
/* Configure the denoiser to use motion vectors, previous image and a temporally stable model. */
|
|
|
|
|
bool temporally_stable = false;
|
|
|
|
|
|
2024-02-06 17:46:21 +01:00
|
|
|
/* If true, then allow, if supported, OpenImageDenoise to use GPU device.
|
2024-02-10 22:35:35 +11:00
|
|
|
* If false, then OpenImageDenoise will always use CPU regardless of GPU device presence. */
|
2024-02-06 17:46:21 +01:00
|
|
|
bool use_gpu = true;
|
|
|
|
|
|
Cycles: merge of cycles-x branch, a major update to the renderer
This includes much improved GPU rendering performance, viewport interactivity,
new shadow catcher, revamped sampling settings, subsurface scattering anisotropy,
new GPU volume sampling, improved PMJ sampling pattern, and more.
Some features have also been removed or changed, breaking backwards compatibility.
Including the removal of the OpenCL backend, for which alternatives are under
development.
Release notes and code docs:
https://wiki.blender.org/wiki/Reference/Release_Notes/3.0/Cycles
https://wiki.blender.org/wiki/Source/Render/Cycles
Credits:
* Sergey Sharybin
* Brecht Van Lommel
* Patrick Mours (OptiX backend)
* Christophe Hery (subsurface scattering anisotropy)
* William Leeson (PMJ sampling pattern)
* Alaska (various fixes and tweaks)
* Thomas Dinges (various fixes)
For the full commit history, see the cycles-x branch. This squashes together
all the changes since intermediate changes would often fail building or tests.
Ref T87839, T87837, T87836
Fixes T90734, T89353, T80267, T80267, T77185, T69800
2021-09-20 17:59:20 +02:00
|
|
|
DenoiserPrefilter prefilter = DENOISER_PREFILTER_FAST;
|
2024-02-06 20:46:48 +01:00
|
|
|
DenoiserQuality quality = DENOISER_QUALITY_HIGH;
|
Cycles: merge of cycles-x branch, a major update to the renderer
This includes much improved GPU rendering performance, viewport interactivity,
new shadow catcher, revamped sampling settings, subsurface scattering anisotropy,
new GPU volume sampling, improved PMJ sampling pattern, and more.
Some features have also been removed or changed, breaking backwards compatibility.
Including the removal of the OpenCL backend, for which alternatives are under
development.
Release notes and code docs:
https://wiki.blender.org/wiki/Reference/Release_Notes/3.0/Cycles
https://wiki.blender.org/wiki/Source/Render/Cycles
Credits:
* Sergey Sharybin
* Brecht Van Lommel
* Patrick Mours (OptiX backend)
* Christophe Hery (subsurface scattering anisotropy)
* William Leeson (PMJ sampling pattern)
* Alaska (various fixes and tweaks)
* Thomas Dinges (various fixes)
For the full commit history, see the cycles-x branch. This squashes together
all the changes since intermediate changes would often fail building or tests.
Ref T87839, T87837, T87836
Fixes T90734, T89353, T80267, T80267, T77185, T69800
2021-09-20 17:59:20 +02:00
|
|
|
|
|
|
|
|
static const NodeEnum *get_type_enum();
|
|
|
|
|
static const NodeEnum *get_prefilter_enum();
|
2024-02-06 20:46:48 +01:00
|
|
|
static const NodeEnum *get_quality_enum();
|
Cycles: merge of cycles-x branch, a major update to the renderer
This includes much improved GPU rendering performance, viewport interactivity,
new shadow catcher, revamped sampling settings, subsurface scattering anisotropy,
new GPU volume sampling, improved PMJ sampling pattern, and more.
Some features have also been removed or changed, breaking backwards compatibility.
Including the removal of the OpenCL backend, for which alternatives are under
development.
Release notes and code docs:
https://wiki.blender.org/wiki/Reference/Release_Notes/3.0/Cycles
https://wiki.blender.org/wiki/Source/Render/Cycles
Credits:
* Sergey Sharybin
* Brecht Van Lommel
* Patrick Mours (OptiX backend)
* Christophe Hery (subsurface scattering anisotropy)
* William Leeson (PMJ sampling pattern)
* Alaska (various fixes and tweaks)
* Thomas Dinges (various fixes)
For the full commit history, see the cycles-x branch. This squashes together
all the changes since intermediate changes would often fail building or tests.
Ref T87839, T87837, T87836
Fixes T90734, T89353, T80267, T80267, T77185, T69800
2021-09-20 17:59:20 +02:00
|
|
|
|
|
|
|
|
DenoiseParams();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
CCL_NAMESPACE_END
|