MCPcopy Create free account
hub / github.com/blender/cycles / denoiserTypeToHumanReadable

Function denoiserTypeToHumanReadable

src/device/denoise.cpp:7–24  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5#include "device/denoise.h"
6
7CCL_NAMESPACE_BEGIN
8
9const char *denoiserTypeToHumanReadable(DenoiserType type)
10{
11 switch (type) {
12 case DENOISER_OPTIX:
13 return "OptiX";
14 case DENOISER_OPENIMAGEDENOISE:
15 return "OpenImageDenoise";
16
17 case DENOISER_NUM:
18 case DENOISER_NONE:
19 case DENOISER_ALL:
20 return "UNKNOWN";
21 }
22
23 return "UNKNOWN";
24}
25
26const NodeEnum *DenoiseParams::get_type_enum()
27{

Callers 4

device.cppFile · 0.85
device.cppFile · 0.85
device.cppFile · 0.85
full_reportMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected