File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -159,7 +159,7 @@ void Renderer::commitParameters()
159
159
getParam<float >(" ambientRadiance" , m_defaultAmbientRadiance);
160
160
m_occlusionDistance = getParam<float >(" ambientOcclusionDistance" , 1e20f);
161
161
m_checkerboard = getParam<bool >(" checkerboarding" , false );
162
- m_denoise = getParam<bool >(" denoise" , false );
162
+ m_denoise = getParam<bool >(" denoise" , true );
163
163
m_sampleLimit = getParam<int >(" sampleLimit" , 128 );
164
164
m_cullTriangleBF = getParam<bool >(" cullTriangleBackfaces" , false );
165
165
m_volumeSamplingRate =
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ struct Renderer : public Object
84
84
float m_ambientIntensity{0 .f };
85
85
float m_occlusionDistance{1e20f};
86
86
bool m_checkerboard{false };
87
- bool m_denoise{false };
87
+ bool m_denoise{true };
88
88
int m_sampleLimit{0 };
89
89
bool m_cullTriangleBF{false };
90
90
float m_volumeSamplingRate{1 .f };
Original file line number Diff line number Diff line change 64
64
"name" : " denoise" ,
65
65
"types" : [" ANARI_BOOL" ],
66
66
"tags" : [],
67
- "default" : false ,
67
+ "default" : true ,
68
68
"description" : " enable the OptiX denoiser"
69
69
},
70
70
{
141
141
"name" : " denoise" ,
142
142
"types" : [" ANARI_BOOL" ],
143
143
"tags" : [],
144
- "default" : false ,
144
+ "default" : true ,
145
145
"description" : " enable the OptiX denoiser"
146
146
},
147
147
{
209
209
"name" : " denoise" ,
210
210
"types" : [" ANARI_BOOL" ],
211
211
"tags" : [],
212
- "default" : false ,
212
+ "default" : true ,
213
213
"description" : " enable the OptiX denoiser"
214
214
},
215
215
{
You can’t perform that action at this time.
0 commit comments