Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/device/device_denoise.h
| Context not available. | |||||
| bool use_pass_normal = false; | bool use_pass_normal = false; | ||||
| bool use_prefilter = false; | bool use_prefilter = false; | ||||
| bool use_cleanaux = false; | |||||
| DenoiseParams() = default; | DenoiseParams() = default; | ||||
| Context not available. | |||||
| { | { | ||||
| return !(use == other.use && store_passes == other.store_passes && type == other.type && | return !(use == other.use && store_passes == other.store_passes && type == other.type && | ||||
| start_sample == other.start_sample && use_pass_albedo == other.use_pass_albedo && | start_sample == other.start_sample && use_pass_albedo == other.use_pass_albedo && | ||||
| use_pass_normal == other.use_pass_normal && use_prefilter == other.use_prefilter); | use_pass_normal == other.use_pass_normal && use_prefilter == other.use_prefilter && | ||||
| use_cleanaux == other.use_cleanaux); | |||||
| } | } | ||||
| }; | }; | ||||
| Context not available. | |||||