Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/device/denoise.cpp
| Show First 20 Lines • Show All 70 Lines • ▼ Show 20 Lines | NODE_DEFINE(DenoiseParams) | ||||
| SOCKET_ENUM(type, "Type", *type_enum, DENOISER_OPENIMAGEDENOISE); | SOCKET_ENUM(type, "Type", *type_enum, DENOISER_OPENIMAGEDENOISE); | ||||
| SOCKET_INT(start_sample, "Start Sample", 0); | SOCKET_INT(start_sample, "Start Sample", 0); | ||||
| SOCKET_BOOLEAN(use_pass_albedo, "Use Pass Albedo", true); | SOCKET_BOOLEAN(use_pass_albedo, "Use Pass Albedo", true); | ||||
| SOCKET_BOOLEAN(use_pass_normal, "Use Pass Normal", false); | SOCKET_BOOLEAN(use_pass_normal, "Use Pass Normal", false); | ||||
| SOCKET_BOOLEAN(temporally_stable, "Temporally Stable", false); | |||||
| SOCKET_ENUM(prefilter, "Prefilter", *prefilter_enum, DENOISER_PREFILTER_FAST); | SOCKET_ENUM(prefilter, "Prefilter", *prefilter_enum, DENOISER_PREFILTER_FAST); | ||||
| return type; | return type; | ||||
| } | } | ||||
| DenoiseParams::DenoiseParams() : Node(get_node_type()) | DenoiseParams::DenoiseParams() : Node(get_node_type()) | ||||
| { | { | ||||
| } | } | ||||
| CCL_NAMESPACE_END | CCL_NAMESPACE_END | ||||