-
Notifications
You must be signed in to change notification settings - Fork 55
/
UserInterface.cpp
1510 lines (1302 loc) · 76.1 KB
/
UserInterface.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/***************************************************************************
# Copyright (c) 2021-2023, NVIDIA CORPORATION. All rights reserved.
#
# NVIDIA CORPORATION and its licensors retain all intellectual property
# and proprietary rights in and to this software, related documentation
# and any modifications thereto. Any use, reproduction, disclosure or
# distribution of this software and related documentation without an express
# license agreement from NVIDIA CORPORATION is strictly prohibited.
**************************************************************************/
/*
License for Dear ImGui
Copyright (c) 2014-2019 Omar Cornut
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
#include "UserInterface.h"
#include "Profiler.h"
#include "SampleScene.h"
#include <donut/engine/IesProfile.h>
#include <donut/app/Camera.h>
#include <donut/app/UserInterfaceUtils.h>
#include <donut/core/json.h>
#include <json/writer.h>
using namespace donut;
UIData::UIData()
{
taaParams.newFrameWeight = 0.04f;
taaParams.maxRadiance = 200.f;
taaParams.clampingFactor = 1.3f;
restirDI.resamplingMode = rtxdi::ReSTIRDI_ResamplingMode::TemporalAndSpatial;
restirDI.initialSamplingParams = rtxdi::getDefaultReSTIRDIInitialSamplingParams();
restirDI.temporalResamplingParams = rtxdi::getDefaultReSTIRDITemporalResamplingParams();
restirDI.spatialResamplingParams = rtxdi::getDefaultReSTIRDISpatialResamplingParams();
restirDI.shadingParams = rtxdi::getDefaultReSTIRDIShadingParams();
restirGI.resamplingMode = rtxdi::ReSTIRGI_ResamplingMode::TemporalAndSpatial;
restirGI.temporalResamplingParams = rtxdi::getDefaultReSTIRGITemporalResamplingParams();
restirGI.spatialResamplingParams = rtxdi::getDefaultReSTIRGISpatialResamplingParams();
restirGI.finalShadingParams = rtxdi::getDefaultReSTIRGIFinalShadingParams();
ApplyPreset();
#ifdef WITH_NRD
SetDefaultDenoiserSettings();
#endif
}
void UIData::ApplyPreset()
{
bool enableCheckerboardSampling = (restirDIStaticParams.CheckerboardSamplingMode != rtxdi::CheckerboardMode::Off);
if (preset != QualityPreset::Custom)
lightingSettings = LightingPasses::RenderSettings();
switch (preset)
{
case QualityPreset::Fast:
enableCheckerboardSampling = true;
restirDI.resamplingMode = rtxdi::ReSTIRDI_ResamplingMode::TemporalAndSpatial;
restirDI.initialSamplingParams.localLightSamplingMode = ReSTIRDI_LocalLightSamplingMode::Power_RIS;
restirDI.numLocalLightUniformSamples = 4;
restirDI.numLocalLightPowerRISSamples = 4;
restirDI.numLocalLightReGIRRISSamples = 4;
restirDI.initialSamplingParams.numPrimaryLocalLightSamples = restirDI.numLocalLightPowerRISSamples;
restirDI.initialSamplingParams.numPrimaryBrdfSamples = 0;
restirDI.initialSamplingParams.numPrimaryInfiniteLightSamples = 1;
restirDI.temporalResamplingParams.discardInvisibleSamples = true;
restirDI.temporalResamplingParams.enableBoilingFilter = true;
restirDI.temporalResamplingParams.boilingFilterStrength = 0.2f;
restirDI.temporalResamplingParams.temporalBiasCorrection = ReSTIRDI_TemporalBiasCorrectionMode::Off;
restirDI.spatialResamplingParams.spatialBiasCorrection = ReSTIRDI_SpatialBiasCorrectionMode::Off;
restirDI.spatialResamplingParams.numSpatialSamples = 1;
restirDI.spatialResamplingParams.numDisocclusionBoostSamples = 2;
restirDI.shadingParams.reuseFinalVisibility = true;
lightingSettings.brdfptParams.enableSecondaryResampling = false;
lightingSettings.enableGradients = false;
break;
case QualityPreset::Medium:
enableCheckerboardSampling = false;
restirDI.resamplingMode = rtxdi::ReSTIRDI_ResamplingMode::TemporalAndSpatial;
restirDI.initialSamplingParams.localLightSamplingMode = ReSTIRDI_LocalLightSamplingMode::ReGIR_RIS;
restirDI.numLocalLightUniformSamples = 8;
restirDI.numLocalLightPowerRISSamples = 8;
restirDI.numLocalLightReGIRRISSamples = 8;
restirDI.initialSamplingParams.numPrimaryLocalLightSamples = restirDI.numLocalLightReGIRRISSamples;
restirDI.initialSamplingParams.numPrimaryBrdfSamples = 1;
restirDI.initialSamplingParams.numPrimaryInfiniteLightSamples = 2;
restirDI.temporalResamplingParams.discardInvisibleSamples = true;
restirDI.temporalResamplingParams.enableBoilingFilter = true;
restirDI.temporalResamplingParams.boilingFilterStrength = 0.2f;
restirDI.temporalResamplingParams.temporalBiasCorrection = ReSTIRDI_TemporalBiasCorrectionMode::Raytraced;
restirDI.spatialResamplingParams.spatialBiasCorrection = ReSTIRDI_SpatialBiasCorrectionMode::Basic;
restirDI.spatialResamplingParams.numSpatialSamples = 1;
restirDI.spatialResamplingParams.numDisocclusionBoostSamples = 8;
restirDI.shadingParams.reuseFinalVisibility = true;
lightingSettings.brdfptParams.enableSecondaryResampling = true;
lightingSettings.brdfptParams.secondarySurfaceReSTIRDIParams.spatialResamplingParams.spatialSamplingRadius = 1.f;
lightingSettings.brdfptParams.secondarySurfaceReSTIRDIParams.spatialResamplingParams.numSpatialSamples = 1;
lightingSettings.brdfptParams.secondarySurfaceReSTIRDIParams.spatialResamplingParams.spatialBiasCorrection = ReSTIRDI_SpatialBiasCorrectionMode::Basic;
lightingSettings.enableGradients = true;
break;
case QualityPreset::Unbiased:
enableCheckerboardSampling = false;
restirDI.resamplingMode = rtxdi::ReSTIRDI_ResamplingMode::TemporalAndSpatial;
restirDI.initialSamplingParams.localLightSamplingMode = ReSTIRDI_LocalLightSamplingMode::Uniform;
restirDI.numLocalLightUniformSamples = 8;
restirDI.numLocalLightPowerRISSamples = 8;
restirDI.numLocalLightReGIRRISSamples = 16;
restirDI.initialSamplingParams.numPrimaryLocalLightSamples = restirDI.numLocalLightUniformSamples;
restirDI.initialSamplingParams.numPrimaryBrdfSamples = 1;
restirDI.initialSamplingParams.numPrimaryInfiniteLightSamples = 2;
restirDI.temporalResamplingParams.discardInvisibleSamples = false;
restirDI.temporalResamplingParams.enableBoilingFilter = false;
restirDI.temporalResamplingParams.boilingFilterStrength = 0.0f;
restirDI.temporalResamplingParams.temporalBiasCorrection = ReSTIRDI_TemporalBiasCorrectionMode::Raytraced;
restirDI.spatialResamplingParams.spatialBiasCorrection = ReSTIRDI_SpatialBiasCorrectionMode::Raytraced;
restirDI.spatialResamplingParams.numSpatialSamples = 1;
restirDI.spatialResamplingParams.numDisocclusionBoostSamples = 8;
restirDI.shadingParams.reuseFinalVisibility = false;
lightingSettings.brdfptParams.enableSecondaryResampling = true;
lightingSettings.brdfptParams.secondarySurfaceReSTIRDIParams.spatialResamplingParams.spatialSamplingRadius = 1.f;
lightingSettings.brdfptParams.secondarySurfaceReSTIRDIParams.spatialResamplingParams.numSpatialSamples = 1;
lightingSettings.brdfptParams.secondarySurfaceReSTIRDIParams.spatialResamplingParams.spatialBiasCorrection = ReSTIRDI_SpatialBiasCorrectionMode::Raytraced;
lightingSettings.enableGradients = true;
break;
case QualityPreset::Ultra:
enableCheckerboardSampling = false;
restirDI.resamplingMode = rtxdi::ReSTIRDI_ResamplingMode::TemporalAndSpatial;
restirDI.initialSamplingParams.localLightSamplingMode = ReSTIRDI_LocalLightSamplingMode::ReGIR_RIS;
restirDI.numLocalLightUniformSamples = 16;
restirDI.numLocalLightPowerRISSamples = 16;
restirDI.numLocalLightReGIRRISSamples = 16;
restirDI.initialSamplingParams.numPrimaryLocalLightSamples = restirDI.numLocalLightReGIRRISSamples;
restirDI.initialSamplingParams.localLightSamplingMode = ReSTIRDI_LocalLightSamplingMode::ReGIR_RIS;
restirDI.initialSamplingParams.numPrimaryBrdfSamples = 1;
restirDI.initialSamplingParams.numPrimaryInfiniteLightSamples = 16;
restirDI.temporalResamplingParams.discardInvisibleSamples = false;
restirDI.temporalResamplingParams.enableBoilingFilter = false;
restirDI.temporalResamplingParams.boilingFilterStrength = 0.0f;
restirDI.temporalResamplingParams.temporalBiasCorrection = ReSTIRDI_TemporalBiasCorrectionMode::Raytraced;
restirDI.spatialResamplingParams.spatialBiasCorrection = ReSTIRDI_SpatialBiasCorrectionMode::Raytraced;
restirDI.spatialResamplingParams.numSpatialSamples = 4;
restirDI.spatialResamplingParams.numDisocclusionBoostSamples = 16;
restirDI.shadingParams.reuseFinalVisibility = false;
lightingSettings.brdfptParams.enableSecondaryResampling = true;
lightingSettings.brdfptParams.secondarySurfaceReSTIRDIParams.spatialResamplingParams.spatialSamplingRadius = 4.f;
lightingSettings.brdfptParams.secondarySurfaceReSTIRDIParams.spatialResamplingParams.numSpatialSamples = 2;
lightingSettings.brdfptParams.secondarySurfaceReSTIRDIParams.spatialResamplingParams.spatialBiasCorrection = ReSTIRDI_SpatialBiasCorrectionMode::Raytraced;
lightingSettings.enableGradients = true;
break;
case QualityPreset::Reference:
enableCheckerboardSampling = false;
restirDI.resamplingMode = rtxdi::ReSTIRDI_ResamplingMode::None;
restirDI.initialSamplingParams.localLightSamplingMode = ReSTIRDI_LocalLightSamplingMode::Uniform;
restirDI.numLocalLightUniformSamples = 16;
restirDI.numLocalLightPowerRISSamples = 16;
restirDI.numLocalLightReGIRRISSamples = 0;
restirDI.initialSamplingParams.numPrimaryLocalLightSamples = restirDI.numLocalLightUniformSamples;
restirDI.initialSamplingParams.numPrimaryBrdfSamples = 1;
restirDI.initialSamplingParams.numPrimaryInfiniteLightSamples = 16;
restirDI.temporalResamplingParams.enableBoilingFilter = false;
restirDI.temporalResamplingParams.boilingFilterStrength = 0.0f;
lightingSettings.brdfptParams.enableSecondaryResampling = false;
lightingSettings.enableGradients = false;
break;
case QualityPreset::Custom:
default:;
}
rtxdi::CheckerboardMode newCheckerboardMode = enableCheckerboardSampling ? rtxdi::CheckerboardMode::Black : rtxdi::CheckerboardMode::Off;
if (newCheckerboardMode != restirDIStaticParams.CheckerboardSamplingMode)
{
restirDIStaticParams.CheckerboardSamplingMode = newCheckerboardMode;
resetISContext = true;
}
}
#ifdef WITH_NRD
void UIData::SetDefaultDenoiserSettings()
{
reblurSettings = nrd::ReblurSettings();
reblurSettings.enableAntiFirefly = true;
reblurSettings.diffusePrepassBlurRadius = 30.0f;
reblurSettings.specularPrepassBlurRadius = 30.0f;
relaxSettings = nrd::RelaxSettings();
relaxSettings.diffuseMaxFastAccumulatedFrameNum = 1;
relaxSettings.specularMaxFastAccumulatedFrameNum = 1;
relaxSettings.diffusePhiLuminance = 1.0f;
relaxSettings.spatialVarianceEstimationHistoryThreshold = 1;
relaxSettings.enableAntiFirefly = true;
relaxSettings.diffusePrepassBlurRadius = 30.0f;
relaxSettings.specularPrepassBlurRadius = 30.0f;
}
#endif
UserInterface::UserInterface(app::DeviceManager* deviceManager, vfs::IFileSystem& rootFS, UIData& ui)
: ImGui_Renderer(deviceManager)
, m_ui(ui)
{
m_FontOpenSans = LoadFont(rootFS, "/media/fonts/OpenSans/OpenSans-Regular.ttf", 17.f);
}
static void ShowHelpMarker(const char* desc)
{
ImGui::SameLine();
ImGui::TextDisabled("(?)");
if (ImGui::IsItemHovered())
{
ImGui::BeginTooltip();
ImGui::PushTextWrapPos(500.0f);
ImGui::TextUnformatted(desc);
ImGui::PopTextWrapPos();
ImGui::EndTooltip();
}
}
void UserInterface::PerformanceWindow()
{
double frameTime = GetDeviceManager()->GetAverageFrameTimeSeconds();
ImGui::Text("%05.2f ms/frame (%05.1f FPS)", frameTime * 1e3f, (frameTime > 0.0) ? 1.0 / frameTime : 0.0);
bool enableProfiler = m_ui.resources->profiler->IsEnabled();
ImGui::Checkbox("Enable Profiler", &enableProfiler);
m_ui.resources->profiler->EnableProfiler(enableProfiler);
if (enableProfiler)
{
ImGui::SameLine();
ImGui::Checkbox("Count Rays", (bool*)&m_ui.lightingSettings.enableRayCounts);
m_ui.resources->profiler->BuildUI(m_ui.lightingSettings.enableRayCounts);
}
}
constexpr uint32_t c_ColorRegularHeader = 0xffff8080;
constexpr uint32_t c_ColorAttentionHeader = 0xff80ffff;
static bool ImGui_ColoredTreeNode(const char* text, uint32_t color)
{
ImGui::PushStyleColor(ImGuiCol_Text, color);
bool expanded = ImGui::TreeNode(text);
ImGui::PopStyleColor();
return expanded;
}
void UserInterface::GeneralRenderingSettings()
{
if (ImGui_ColoredTreeNode("General Rendering", c_ColorRegularHeader))
{
if (ImGui::Button("Reload Shaders (Ctrl+R)"))
{
m_ui.reloadShaders = true;
m_ui.resetAccumulation = true;
}
if (GetDevice()->queryFeatureSupport(nvrhi::Feature::RayQuery))
{
if (GetDevice()->queryFeatureSupport(nvrhi::Feature::RayTracingPipeline))
{
m_ui.reloadShaders |= ImGui::Checkbox("Use RayQuery", (bool*)&m_ui.useRayQuery);
}
else
{
ImGui::Checkbox("Use RayQuery (No other options)", (bool*)&m_ui.useRayQuery);
m_ui.useRayQuery = true;
}
}
else
{
ImGui::Checkbox("Use RayQuery (Not available)", (bool*)&m_ui.useRayQuery);
m_ui.useRayQuery = false;
}
ImGui::Checkbox("Rasterize G-Buffer", (bool*)&m_ui.rasterizeGBuffer);
int resolutionScalePercents = int(m_ui.resolutionScale * 100.f);
ImGui::SliderInt("Resolution Scale (%)", &resolutionScalePercents, 50, 100);
m_ui.resolutionScale = float(resolutionScalePercents) * 0.01f;
m_ui.resolutionScale = dm::clamp(m_ui.resolutionScale, 0.5f, 1.0f);
ImGui::Checkbox("##enableFpsLimit", &m_ui.enableFpsLimit);
ImGui::SameLine();
ImGui::PushItemWidth(69.f);
ImGui::SliderInt("FPS Limit", (int*)&m_ui.fpsLimit, 10, 60);
ImGui::PopItemWidth();
m_ui.resetAccumulation |= ImGui::Checkbox("##enablePixelJitter", (bool*)&m_ui.enablePixelJitter);
ImGui::SameLine();
ImGui::PushItemWidth(69.f);
m_ui.resetAccumulation |= ImGui::Combo("Pixel Jitter", (int*)&m_ui.temporalJitter, "MSAA\0Halton\0R2\0White Noise\0");
ImGui::PopItemWidth();
ImGui::TreePop();
}
ImGui::Separator();
}
void UserInterface::SamplingSettings()
{
if (ImGui_ColoredTreeNode("Static ReSTIR Context Settings", c_ColorRegularHeader))
{
ShowHelpMarker("Heavyweight settings (e.g. that dictate buffer sizes) that require recreating the context to change.");
m_ui.resetAccumulation |= ImGui::Checkbox("Importance Sample Env. Map", &m_ui.environmentMapImportanceSampling);
if (ImGui::TreeNode("RTXDI Context"))
{
if (ImGui::Button("Apply Settings"))
m_ui.resetISContext = true;
// TODO: Pull this out of ReSTIRDIContext and make it global to both ReSTIRDI and ReSTIRGI
bool enableCheckerboardSampling = (m_ui.restirDIStaticParams.CheckerboardSamplingMode != rtxdi::CheckerboardMode::Off);
ImGui::Checkbox("Checkerboard Rendering", &enableCheckerboardSampling);
m_ui.restirDIStaticParams.CheckerboardSamplingMode = enableCheckerboardSampling ? rtxdi::CheckerboardMode::Black : rtxdi::CheckerboardMode::Off;
ImGui::TreePop();
}
if (ImGui::TreeNode("ReGIR Context"))
{
if (ImGui::Button("Apply Settings"))
m_ui.resetISContext = true;
ImGui::DragInt("Lights per Cell", (int*)&m_ui.regirStaticParams.LightsPerCell, 1, 32, 8192);
static const char* regirShapeOptions[] = { "Grid", "Onion" };
const char* currentReGIRShapeOption = regirShapeOptions[static_cast<int>(m_ui.regirStaticParams.Mode) - 1]; // Disabled option is skipped
if (ImGui::BeginCombo("ReGIR Mode", currentReGIRShapeOption))
{
for (int i = 0; i < sizeof(regirShapeOptions) / sizeof(regirShapeOptions[0]); i++)
{
int enumIndex = i + 1; // We skip Disabled here since that's controlled by the ReSTIR DI + ReSTIR GI settings.
bool is_selected = (enumIndex == static_cast<int>(m_ui.regirStaticParams.Mode));
if (ImGui::Selectable(regirShapeOptions[i], is_selected))
*(int*)&m_ui.regirStaticParams.Mode = enumIndex;
if (is_selected)
ImGui::SetItemDefaultFocus();
}
ImGui::EndCombo();
}
if (m_ui.regirStaticParams.Mode == rtxdi::ReGIRMode::Grid)
{
ImGui::DragInt3("Grid Resolution", (int*)&m_ui.regirStaticParams.gridParameters.GridSize.x, 1, 1, 64);
}
else if (m_ui.regirStaticParams.Mode == rtxdi::ReGIRMode::Onion)
{
ImGui::SliderInt("Onion Layers - Detail", (int*)&m_ui.regirStaticParams.onionParameters.OnionDetailLayers, 0, 8);
ImGui::SliderInt("Onion Layers - Coverage", (int*)&m_ui.regirStaticParams.onionParameters.OnionCoverageLayers, 0, 20);
}
ImGui::Text("Total ReGIR Cells: %d", m_ui.regirLightSlotCount / m_ui.regirStaticParams.LightsPerCell);
ImGui::TreePop();
}
ImGui::TreePop();
}
ImGui::Separator();
if (ImGui_ColoredTreeNode("Direct Lighting", c_ColorAttentionHeader))
{
bool samplingSettingsChanged = false;
m_ui.resetAccumulation |= ImGui::Combo("Direct Lighting Mode", (int*)&m_ui.directLightingMode,
"None\0"
"BRDF\0"
"ReSTIR\0"
);
switch(m_ui.directLightingMode)
{
case DirectLightingMode::None:
ShowHelpMarker(
"No direct lighting is applied to primary surfaces.");
break;
case DirectLightingMode::Brdf:
ShowHelpMarker(
"Trace BRDF rays from primary surfaces and collect emissive objects found by such rays. "
"No light sampling is performed for primary surfaces. Produces very noisy results unless "
"Indirect Lighting Mode is set to ReSTIR GI, in which case resampling is applied to BRDF rays.");
break;
case DirectLightingMode::ReStir:
ShowHelpMarker(
"Sample the direct lighting using ReSTIR.");
break;
}
if (ImGui::Combo("Preset", (int*)&m_ui.preset, "(Custom)\0Fast\0Medium\0Unbiased\0Ultra\0Reference\0"))
{
m_ui.ApplyPreset();
m_ui.resetAccumulation = true;
}
ImGui::Checkbox("Show Advanced Settings", &m_showAdvancedSamplingSettings);
bool isUsingReStir = m_ui.directLightingMode == DirectLightingMode::ReStir;
if (isUsingReStir)
{
ImGui::PushItemWidth(180.f);
m_ui.resetAccumulation |= ImGui::Combo("Resampling Mode", (int*)&m_ui.restirDI.resamplingMode,
"None\0"
"Temporal\0"
"Spatial\0"
"Temporal + Spatial\0"
"Fused Spatiotemporal\0");
ImGui::PopItemWidth();
ImGui::Separator();
if (ImGui::TreeNode("ReGIR Presampling"))
{
ShowHelpMarker("Dynamic ReGIR Settings");
static const char* regirPresamplingOptions[] = { "Uniform Sampling", "Power RIS" };
const char* currentPresamplingOption = regirPresamplingOptions[static_cast<int>(m_ui.regirDynamicParameters.presamplingMode)];
if (ImGui::BeginCombo("ReGIR RIS Presampling Mode", currentPresamplingOption))
{
for (int i = 0; i < sizeof(regirPresamplingOptions) / sizeof(regirPresamplingOptions[0]); i++)
{
bool is_selected = (i == static_cast<int>(m_ui.regirDynamicParameters.presamplingMode));
if (ImGui::Selectable(regirPresamplingOptions[i], is_selected))
*(int*)&m_ui.regirDynamicParameters.presamplingMode = i;
if (is_selected)
ImGui::SetItemDefaultFocus();
}
ImGui::EndCombo();
}
ShowHelpMarker(
"Presampling method the ReGIR algorithm uses to select lights");
m_ui.resetAccumulation |= ImGui::SliderFloat("Cell Size", &m_ui.regirDynamicParameters.regirCellSize, 0.1f, 4.f);
m_ui.resetAccumulation |= ImGui::SliderInt("Grid Build Samples", (int*)&m_ui.regirDynamicParameters.regirNumBuildSamples, 0, 32);
m_ui.resetAccumulation |= ImGui::SliderFloat("Sampling Jitter", &m_ui.regirDynamicParameters.regirSamplingJitter, 0.0f, 2.f);
ImGui::Checkbox("Freeze Position", &m_ui.freezeRegirPosition);
ImGui::SameLine(0.f, 10.f);
ImGui::Checkbox("Visualize Cells", (bool*)&m_ui.lightingSettings.visualizeRegirCells);
ImGui::TreePop();
}
if (ImGui::TreeNode("Initial Sampling"))
{
ImGui::SetNextItemOpen(true);
if(ImGui::TreeNode("Local Light Sampling"))
{
int* initSamplingMode = (int*)&m_ui.restirDI.initialSamplingParams.localLightSamplingMode;
samplingSettingsChanged |= ImGui::RadioButton("Local Light Uniform Sampling", initSamplingMode, 0);
ShowHelpMarker("Sample local lights uniformly");
samplingSettingsChanged |= ImGui::SliderInt("Local Light Uniform Samples", (int*)&m_ui.restirDI.numLocalLightUniformSamples, 0, 32);
ShowHelpMarker(
"Number of samples drawn uniformly from the local light pool.");
samplingSettingsChanged |= ImGui::RadioButton("Local Light Power RIS", initSamplingMode, 1);
ShowHelpMarker("Sample local lights using power-based RIS");
samplingSettingsChanged |= ImGui::SliderInt("Local Light Power RIS Samples", (int*)&m_ui.restirDI.numLocalLightPowerRISSamples, 0, 32);
ShowHelpMarker(
"Number of samples drawn from the local lights power-based RIS buffer.");
samplingSettingsChanged |= ImGui::RadioButton("Local Light ReGIR RIS", initSamplingMode, 2);
ShowHelpMarker("Sample local lights using ReGIR-based RIS");
samplingSettingsChanged |= ImGui::SliderInt("Local Light ReGIR RIS Samples", (int*)&m_ui.restirDI.numLocalLightReGIRRISSamples, 0, 32);
ShowHelpMarker(
"Number of samples drawn from the local lights ReGIR-based RIS buffer");
static const char* regirFallbackOptions[] = { "Uniform Sampling", "Power RIS" };
const char* currentFallbackOption = regirFallbackOptions[static_cast<int>(m_ui.regirDynamicParameters.fallbackSamplingMode)];
if (ImGui::BeginCombo("ReGIR RIS Fallback Sampling Mode", currentFallbackOption))
{
for (int i = 0; i < sizeof(regirFallbackOptions) / sizeof(regirFallbackOptions[0]); i++)
{
bool is_selected = (i == static_cast<int>(m_ui.regirDynamicParameters.fallbackSamplingMode));
if (ImGui::Selectable(regirFallbackOptions[i], is_selected))
*(int*)&m_ui.regirDynamicParameters.fallbackSamplingMode = i;
if (is_selected)
ImGui::SetItemDefaultFocus();
}
ImGui::EndCombo();
}
ShowHelpMarker(
"Sampling method to fall back to for surfaces outside the ReGIR volume");
m_ui.resetAccumulation |= samplingSettingsChanged;
ImGui::TreePop();
}
samplingSettingsChanged |= ImGui::SliderInt("Initial BRDF Samples", (int*)&m_ui.restirDI.initialSamplingParams.numPrimaryBrdfSamples, 0, 8);
ShowHelpMarker(
"Number of rays traced from the surface using BRDF importance sampling to find mesh lights or environment map samples. Helps glossy reflections.");
samplingSettingsChanged |= ImGui::SliderInt("Initial Infinite Light Samples", (int*)&m_ui.restirDI.initialSamplingParams.numPrimaryInfiniteLightSamples, 0, 32);
ShowHelpMarker(
"Number of samples drawn from the infinite light pool, i.e. the sun light when using "
"the procedural environment, and the environment map when it's not importance sampled.");
samplingSettingsChanged |= ImGui::SliderInt("Initial Environment Samples", (int*)&m_ui.restirDI.initialSamplingParams.numPrimaryEnvironmentSamples, 0, 32);
ShowHelpMarker(
"Number of samples drawn from the environment map when it is importance sampled.");
samplingSettingsChanged |= ImGui::Checkbox("Enable Initial Visibility", (bool*)&m_ui.restirDI.initialSamplingParams.enableInitialVisibility);
samplingSettingsChanged |= ImGui::SliderFloat("BRDF Sample Cutoff", (float*)&m_ui.restirDI.initialSamplingParams.brdfCutoff, 0.0f, 0.1f);
ShowHelpMarker(
"Determine how much to shorten BRDF rays. 0 to disable shortening");
ImGui::TreePop();
}
if (ImGui::TreeNode("Temporal Resampling"))
{
samplingSettingsChanged |= ImGui::Checkbox("Enable Previous Frame TLAS/BLAS", (bool*)&m_ui.lightingSettings.enablePreviousTLAS);
ShowHelpMarker(
"Use the previous frame TLAS for bias correction rays during temporal resampling and gradient computation. "
"Resutls in less biased results under motion and brighter, more complete gradients.");
samplingSettingsChanged |= ImGui::Checkbox("Enable Permutation Sampling", (bool*)&m_ui.restirDI.temporalResamplingParams.enablePermutationSampling);
ShowHelpMarker(
"Shuffle the pixels from the previous frame when resampling from them. This makes pixel colors less correllated "
"temporally and therefore better suited for temporal accumulation and denoising. Also results in a higher positive "
"bias when the Reuse Final Visibility setting is on, which somewhat counteracts the negative bias from spatial resampling.");
samplingSettingsChanged |= ImGui::Combo("Temporal Bias Correction", (int*)&m_ui.restirDI.temporalResamplingParams.temporalBiasCorrection, "Off\0Basic\0Pairwise\0Ray Traced\0");
ShowHelpMarker(
"Off = use the 1/M normalization.\n"
"Basic = use the MIS normalization but assume that every sample is visible.\n"
"Pairwise = pairwise MIS improves perf and specular quality (assumes every sample is visible).\n"
"Ray Traced = use the MIS normalization and verify visibility.");
if (m_showAdvancedSamplingSettings)
{
samplingSettingsChanged |= ImGui::SliderFloat("Temporal Depth Threshold", &m_ui.restirDI.temporalResamplingParams.temporalDepthThreshold, 0.f, 1.f);
ShowHelpMarker("Higher values result in accepting temporal samples with depths more different from the current pixel.");
samplingSettingsChanged |= ImGui::SliderFloat("Temporal Normal Threshold", &m_ui.restirDI.temporalResamplingParams.temporalNormalThreshold, 0.f, 1.f);
ShowHelpMarker("Lower values result in accepting temporal samples with normals more different from the current pixel.");
ImGui::SliderFloat("Permutation Sampling Threshold", &m_ui.restirDI.temporalResamplingParams.permutationSamplingThreshold, 0.8f, 1.f);
ShowHelpMarker("Higher values result in disabling permutation sampling on less complex surfaces.");
}
samplingSettingsChanged |= ImGui::SliderInt("Max History Length", (int*)&m_ui.restirDI.temporalResamplingParams.maxHistoryLength, 1, 100);
samplingSettingsChanged |= ImGui::Checkbox("##enableBoilingFilter", (bool*)&m_ui.restirDI.temporalResamplingParams.enableBoilingFilter);
ImGui::SameLine();
ImGui::PushItemWidth(69.f);
samplingSettingsChanged |= ImGui::SliderFloat("Boiling Filter", &m_ui.restirDI.temporalResamplingParams.boilingFilterStrength, 0.f, 1.f);
ImGui::PopItemWidth();
ShowHelpMarker(
"The boiling filter analyzes the neighborhood of each pixel and discards the pixel's reservoir "
"if it has a significantly higher weight than the other pixels.");
ImGui::TreePop();
}
if (ImGui::TreeNode("Spatial Resampling"))
{
if (m_ui.restirDI.resamplingMode != rtxdi::ReSTIRDI_ResamplingMode::FusedSpatiotemporal)
{
samplingSettingsChanged |= ImGui::Combo("Spatial Bias Correction", (int*)&m_ui.restirDI.spatialResamplingParams.spatialBiasCorrection, "Off\0Basic\0Pairwise\0Ray Traced\0");
ShowHelpMarker(
"Off = use the 1/M normalization.\n"
"Basic = use the MIS normalization but assume that every sample is visible.\n"
"Pairwise = pairwise MIS improves perf and specular quality (assumes every sample is visible).\n"
"Ray Traced = use the MIS normalization and verify visibility.");
}
samplingSettingsChanged |= ImGui::SliderInt("Spatial Samples", (int*)&m_ui.restirDI.spatialResamplingParams.numSpatialSamples, 1, 32);
if (m_ui.restirDI.resamplingMode == rtxdi::ReSTIRDI_ResamplingMode::TemporalAndSpatial || m_ui.restirDI.resamplingMode == rtxdi::ReSTIRDI_ResamplingMode::FusedSpatiotemporal)
{
samplingSettingsChanged |= ImGui::SliderInt("Disocclusion Boost Samples", (int*)&m_ui.restirDI.spatialResamplingParams.numDisocclusionBoostSamples, 1, 32);
ShowHelpMarker(
"The number of spatial samples to take on surfaces which don't have sufficient accumulated history length. "
"More samples result in faster convergence in disoccluded regions but increase processing time.");
}
samplingSettingsChanged |= ImGui::SliderFloat("Spatial Sampling Radius", &m_ui.restirDI.spatialResamplingParams.spatialSamplingRadius, 1.f, 32.f);
if (m_showAdvancedSamplingSettings && m_ui.restirDI.resamplingMode != rtxdi::ReSTIRDI_ResamplingMode::FusedSpatiotemporal)
{
samplingSettingsChanged |= ImGui::SliderFloat("Spatial Depth Threshold", &m_ui.restirDI.spatialResamplingParams.spatialDepthThreshold, 0.f, 1.f);
ShowHelpMarker("Higher values result in accepting samples with depths more different from the center pixel.");
samplingSettingsChanged |= ImGui::SliderFloat("Spatial Normal Threshold", &m_ui.restirDI.spatialResamplingParams.spatialNormalThreshold, 0.f, 1.f);
ShowHelpMarker("Lower values result in accepting samples with normals more different from the center pixel.");
samplingSettingsChanged |= ImGui::Checkbox("Discount Naive Samples", reinterpret_cast<bool*>(&m_ui.restirDI.spatialResamplingParams.discountNaiveSamples));
ShowHelpMarker("Prevents samples which are from the current frame or have no reasonable temporal history merged being spread to neighbors.");
}
if (m_showAdvancedSamplingSettings && m_ui.restirDI.resamplingMode != rtxdi::ReSTIRDI_ResamplingMode::Temporal)
{
samplingSettingsChanged |= ImGui::Checkbox("Discount Naive Samples", (bool*)&m_ui.restirDI.spatialResamplingParams.discountNaiveSamples);
ShowHelpMarker("Prevents samples which are from the current frame or have no reasonable temporal history merged being spread to neighbors.");
}
ImGui::TreePop();
}
if (ImGui::TreeNode("Final Shading"))
{
samplingSettingsChanged |= ImGui::Checkbox("Enable Final Visibility", (bool*)&m_ui.restirDI.shadingParams.enableFinalVisibility);
samplingSettingsChanged |= ImGui::Checkbox("Discard Invisible Samples", (bool*)&m_ui.restirDI.temporalResamplingParams.discardInvisibleSamples);
ShowHelpMarker(
"When a sample is determined to be occluded during final shading, its reservoir is discarded. "
"This can significantly reduce noise, but also introduce some bias near shadow boundaries beacuse the reservoirs' M values are kept. "
"Also, enabling this option speeds up temporal resampling with Ray Traced bias correction by skipping most of the bias correction rays.");
samplingSettingsChanged |= ImGui::Checkbox("Reuse Final Visibility", (bool*)&m_ui.restirDI.shadingParams.reuseFinalVisibility);
ShowHelpMarker(
"Store the fractional final visibility term in the reservoirs and reuse it later if the reservoir is not too old and has not "
"moved too far away from its original location. Enable the Advanced Settings option to control the thresholds.");
if (m_ui.restirDI.shadingParams.reuseFinalVisibility && m_showAdvancedSamplingSettings)
{
samplingSettingsChanged |= ImGui::SliderFloat("Final Visibility - Max Distance", &m_ui.restirDI.shadingParams.finalVisibilityMaxDistance, 0.f, 32.f);
samplingSettingsChanged |= ImGui::SliderInt("Final Visibility - Max Age", (int*)&m_ui.restirDI.shadingParams.finalVisibilityMaxAge, 0, 16);
}
ImGui::TreePop();
}
}
if (samplingSettingsChanged)
{
m_ui.preset = QualityPreset::Custom;
m_ui.resetAccumulation = true;
}
ImGui::TreePop();
}
ImGui::Separator();
if (ImGui_ColoredTreeNode("Indirect Lighting", c_ColorAttentionHeader))
{
m_ui.resetAccumulation |= ImGui::Combo("Indirect Lighting Mode", (int*)&m_ui.indirectLightingMode,
"None\0"
"BRDF\0"
"ReSTIR GI\0"
);
switch (m_ui.indirectLightingMode)
{
case IndirectLightingMode::Brdf:
ShowHelpMarker(
"Trace BRDF rays from primary surfaces. "
"Shade the surfaces found with BRDF rays using direct light sampling.");
break;
case IndirectLightingMode::ReStirGI:
ShowHelpMarker(
"Trace diffuse and specular BRDF rays and resample results with ReSTIR GI. "
"Shade the surfaces found with BRDF rays using direct light sampling.");
break;
default:;
}
bool isUsingIndirect = m_ui.indirectLightingMode != IndirectLightingMode::None;
m_ui.resetAccumulation |= ImGui::SliderFloat("Min Secondary Roughness", &m_ui.lightingSettings.brdfptParams.materialOverrideParams.minSecondaryRoughness, 0.f, 1.f);
if (isUsingIndirect && ImGui::TreeNode("Secondary Surface Light Sampling"))
{
// TODO: Determine whether to have choice of sampling mode here and in ReSTIR DI.
// Should probably have a single numLocalLightSamples in the struct and have the UI keep track of the 3 different values for each mode
m_ui.resetAccumulation |= ImGui::SliderInt("Indirect Local Light Samples", (int*)&m_ui.lightingSettings.brdfptParams.secondarySurfaceReSTIRDIParams.initialSamplingParams.numPrimaryLocalLightSamples, 0, 32);
m_ui.resetAccumulation |= ImGui::SliderInt("Indirect Inifinite Light Samples", (int*)&m_ui.lightingSettings.brdfptParams.secondarySurfaceReSTIRDIParams.initialSamplingParams.numPrimaryInfiniteLightSamples, 0, 32);
m_ui.resetAccumulation |= ImGui::SliderInt("Indirect Environment Samples", (int*)&m_ui.lightingSettings.brdfptParams.secondarySurfaceReSTIRDIParams.initialSamplingParams.numPrimaryEnvironmentSamples, 0, 32);
ImGui::TreePop();
}
if (isUsingIndirect && m_ui.directLightingMode == DirectLightingMode::ReStir && ImGui::TreeNode("Reuse Primary Samples"))
{
m_ui.resetAccumulation |= ImGui::Checkbox("Reuse RTXDI samples for secondary surface", (bool*)&m_ui.lightingSettings.brdfptParams.enableSecondaryResampling);
ShowHelpMarker(
"When shading a secondary surface, try to find a matching surface in screen space and reuse its light reservoir. "
"This feature uses the Spatial Resampling function and has similar controls.");
m_ui.resetAccumulation |= ImGui::Combo("Secondary Bias Correction", (int*)&m_ui.lightingSettings.brdfptParams.secondarySurfaceReSTIRDIParams.spatialResamplingParams.spatialBiasCorrection, "Off\0Basic\0Pairwise\0Ray Traced\0");
m_ui.resetAccumulation |= ImGui::SliderInt("Secondary Samples", (int*)&m_ui.lightingSettings.brdfptParams.secondarySurfaceReSTIRDIParams.spatialResamplingParams.numSpatialSamples, 1, 4);
m_ui.resetAccumulation |= ImGui::SliderFloat("Secondary Sampling Radius", &m_ui.lightingSettings.brdfptParams.secondarySurfaceReSTIRDIParams.spatialResamplingParams.spatialSamplingRadius, 0.f, 32.f);
m_ui.resetAccumulation |= ImGui::SliderFloat("Secondary Depth Threshold", &m_ui.lightingSettings.brdfptParams.secondarySurfaceReSTIRDIParams.spatialResamplingParams.spatialDepthThreshold, 0.f, 1.f);
m_ui.resetAccumulation |= ImGui::SliderFloat("Secondary Normal Threshold", &m_ui.lightingSettings.brdfptParams.secondarySurfaceReSTIRDIParams.spatialResamplingParams.spatialNormalThreshold, 0.f, 1.f);
ImGui::TreePop();
}
if (m_ui.indirectLightingMode == IndirectLightingMode::ReStirGI)
{
ImGui::PushItemWidth(180.f);
m_ui.resetAccumulation |= ImGui::Combo("Resampling Mode", (int*)&m_ui.restirGI.resamplingMode,
"None\0"
"Temporal\0"
"Spatial\0"
"Temporal + Spatial\0"
"Fused Spatiotemporal\0");
ImGui::PopItemWidth();
ImGui::Separator();
if ((m_ui.restirGI.resamplingMode == rtxdi::ReSTIRGI_ResamplingMode::Temporal ||
m_ui.restirGI.resamplingMode == rtxdi::ReSTIRGI_ResamplingMode::TemporalAndSpatial ||
m_ui.restirGI.resamplingMode == rtxdi::ReSTIRGI_ResamplingMode::FusedSpatiotemporal) &&
ImGui::TreeNode("Temporal Resampling"))
{
m_ui.resetAccumulation |= ImGui::SliderFloat("Temporal Depth Threshold", &m_ui.restirGI.temporalResamplingParams.depthThreshold, 0.001f, 1.f);
m_ui.resetAccumulation |= ImGui::SliderFloat("Temporal Normal Threshold", &m_ui.restirGI.temporalResamplingParams.normalThreshold, 0.001f, 1.f);
m_ui.resetAccumulation |= ImGui::SliderInt("Max reservoir age", (int*)&m_ui.restirGI.temporalResamplingParams.maxReservoirAge, 1, 100);
m_ui.resetAccumulation |= ImGui::SliderInt("Max history length", (int*)&m_ui.restirGI.temporalResamplingParams.maxHistoryLength, 1, 100);
m_ui.resetAccumulation |= ImGui::Checkbox("Enable permutation sampling", (bool*)&m_ui.restirGI.temporalResamplingParams.enablePermutationSampling);
m_ui.resetAccumulation |= ImGui::Checkbox("Enable fallback sampling", (bool*)&m_ui.restirGI.temporalResamplingParams.enableFallbackSampling);
const char* biasCorrectionText = (m_ui.restirGI.resamplingMode == rtxdi::ReSTIRGI_ResamplingMode::FusedSpatiotemporal)
? "Fused bias correction"
: "Temporal bias correction";
static const char* temporalResamplingOptions[] = { "Off", "Basic MIS", "RayTraced" };
static const std::map<ResTIRGI_TemporalBiasCorrectionMode, uint32_t> mode2index = { {ResTIRGI_TemporalBiasCorrectionMode::Off, 0},
{ResTIRGI_TemporalBiasCorrectionMode::Basic, 1},
{ResTIRGI_TemporalBiasCorrectionMode::Raytraced, 2} };
static const std::array<ResTIRGI_TemporalBiasCorrectionMode, 3> index2mode = { ResTIRGI_TemporalBiasCorrectionMode::Off,
ResTIRGI_TemporalBiasCorrectionMode::Basic,
ResTIRGI_TemporalBiasCorrectionMode::Raytraced };
const char* currentTemporalResamplingModeOption = temporalResamplingOptions[mode2index.at(m_ui.restirGI.temporalResamplingParams.temporalBiasCorrectionMode)];
if(ImGui::BeginCombo(biasCorrectionText, currentTemporalResamplingModeOption))
{
for (int i = 0; i < sizeof(temporalResamplingOptions) / sizeof(temporalResamplingOptions[0]); i++)
{
bool is_selected = (index2mode.at(i) == m_ui.restirGI.temporalResamplingParams.temporalBiasCorrectionMode);
if (ImGui::Selectable(temporalResamplingOptions[i], is_selected))
{
m_ui.resetAccumulation |= true;
m_ui.restirGI.temporalResamplingParams.temporalBiasCorrectionMode = index2mode.at(i);
}
if (is_selected)
ImGui::SetItemDefaultFocus();
}
ImGui::EndCombo();
}
m_ui.resetAccumulation |= ImGui::Checkbox("##enableGIBoilingFilter", (bool*)&m_ui.restirGI.temporalResamplingParams.enableBoilingFilter);
ImGui::SameLine();
ImGui::PushItemWidth(69.f);
m_ui.resetAccumulation |= ImGui::SliderFloat("Boiling Filter##GIBoilingFilter", &m_ui.restirGI.temporalResamplingParams.boilingFilterStrength, 0.f, 1.f);
ImGui::PopItemWidth();
ImGui::TreePop();
}
if ((m_ui.restirGI.resamplingMode == rtxdi::ReSTIRGI_ResamplingMode::Spatial ||
m_ui.restirGI.resamplingMode == rtxdi::ReSTIRGI_ResamplingMode::TemporalAndSpatial ||
m_ui.restirGI.resamplingMode == rtxdi::ReSTIRGI_ResamplingMode::FusedSpatiotemporal) &&
ImGui::TreeNode("Spatial Resampling"))
{
m_ui.resetAccumulation |= ImGui::SliderInt("Num spatial samples", (int*)&m_ui.restirGI.spatialResamplingParams.numSpatialSamples, 1, 7);
m_ui.resetAccumulation |= ImGui::SliderFloat("Sampling Radius", (float*)&m_ui.restirGI.spatialResamplingParams.spatialSamplingRadius, 0.01f, 60.0f);
m_ui.resetAccumulation |= ImGui::SliderFloat("Spatial Depth Threshold", &m_ui.restirGI.spatialResamplingParams.spatialDepthThreshold, 0.001f, 1.f);
m_ui.resetAccumulation |= ImGui::SliderFloat("Spatial Normal Threshold", &m_ui.restirGI.spatialResamplingParams.spatialNormalThreshold, 0.001f, 1.f);
if (m_ui.restirGI.resamplingMode != rtxdi::ReSTIRGI_ResamplingMode::FusedSpatiotemporal)
{
static const char* spatialResamplingOptions[] = { "Off", "Basic MIS", "RayTraced" };
static const std::map<ResTIRGI_SpatialBiasCorrectionMode, uint32_t> mode2index = { {ResTIRGI_SpatialBiasCorrectionMode::Off, 0},
{ResTIRGI_SpatialBiasCorrectionMode::Basic, 1},
{ResTIRGI_SpatialBiasCorrectionMode::Raytraced, 2} };
static const std::array<ResTIRGI_SpatialBiasCorrectionMode, 3> index2mode = {ResTIRGI_SpatialBiasCorrectionMode::Off,
ResTIRGI_SpatialBiasCorrectionMode::Basic,
ResTIRGI_SpatialBiasCorrectionMode::Raytraced };
const char* currentSpatialResamplingModeOption = spatialResamplingOptions[mode2index.at(m_ui.restirGI.spatialResamplingParams.spatialBiasCorrectionMode)];
if(ImGui::BeginCombo("Spatial Bias Correction Mode", currentSpatialResamplingModeOption))
{
for (int i = 0; i < sizeof(spatialResamplingOptions) / sizeof(spatialResamplingOptions[0]); i++)
{
bool is_selected = (index2mode.at(i) == m_ui.restirGI.spatialResamplingParams.spatialBiasCorrectionMode);
if (ImGui::Selectable(spatialResamplingOptions[i], is_selected))
{
m_ui.resetAccumulation |= true;
m_ui.restirGI.spatialResamplingParams.spatialBiasCorrectionMode = index2mode.at(i);
}
if (is_selected)
ImGui::SetItemDefaultFocus();
}
ImGui::EndCombo();
}
}
ImGui::TreePop();
}
m_ui.resetAccumulation |= ImGui::Checkbox("Final visibility", (bool*)&m_ui.restirGI.finalShadingParams.enableFinalVisibility);
m_ui.resetAccumulation |= ImGui::Checkbox("Final MIS", (bool*)&m_ui.restirGI.finalShadingParams.enableFinalMIS);
}
ImGui::TreePop();
}
ImGui::Separator();
}
void UserInterface::PostProcessSettings()
{
if (ImGui_ColoredTreeNode("Post-Processing", c_ColorRegularHeader))
{
AntiAliasingMode previousAAMode = m_ui.aaMode;
ImGui::RadioButton("No AA", (int*)&m_ui.aaMode, (int)AntiAliasingMode::None);
ImGui::SameLine();
ImGui::RadioButton("Accumulation", (int*)&m_ui.aaMode, (int)AntiAliasingMode::Accumulation);
ImGui::SameLine();
ImGui::RadioButton("TAAU", (int*)&m_ui.aaMode, (int)AntiAliasingMode::TAA);
#if WITH_DLSS
if (m_ui.dlssAvailable)
{
ImGui::SameLine();
ImGui::RadioButton("DLSS", (int*)&m_ui.aaMode, (int)AntiAliasingMode::DLSS);
}
#endif
if (m_ui.aaMode != previousAAMode)
m_ui.resetAccumulation = true;
ImGui::PushItemWidth(50.f);
m_ui.resetAccumulation |= ImGui::DragInt("Accum. Frame Limit", (int*)&m_ui.framesToAccumulate, 1.f, 0, 1024);
ImGui::PopItemWidth();
if (m_ui.aaMode == AntiAliasingMode::Accumulation)
{
ImGui::SameLine();
ImGui::TextDisabled("// %d frame(s)", m_ui.numAccumulatedFrames);
}
// Reference image UI
{
ImGui::Separator();
ImGui::TextUnformatted("Reference Image:");
ShowHelpMarker(
"Allows you to store the current rendering output into a texture, "
"and later show this texture side-by-side with new rendering output "
"or toggle between the two for comparison. Most useful with the "
"Accumulation mode above."
);
if (ImGui::Button("Store"))
m_ui.storeReferenceImage = true;
if (m_ui.referenceImageCaptured)
{
ImGui::SameLine();
if (ImGui::Button("Toggle"))
{
if (m_ui.referenceImageSplit == 0.f)
m_ui.referenceImageSplit = 1.f;
else
m_ui.referenceImageSplit = 0.f;
}
ImGui::SameLine(160.f);
ImGui::SliderFloat("Split Display", &m_ui.referenceImageSplit, 0.f, 1.f, "%.2f");
}
ImGui::Separator();
}
#if WITH_DLSS
if (m_ui.dlssAvailable)
{
// ImGui::SliderFloat("DLSS Exposure Scale", &m_ui.dlssExposureScale, 0.125f, 16.f, "%.3f", ImGuiSliderFlags_Logarithmic);
// ImGui::SliderFloat("DLSS Sharpness", &m_ui.dlssSharpness, 0.f, 1.f);
}
#endif
m_ui.resetAccumulation |= ImGui::Checkbox("Apply Textures in Compositing", (bool*)&m_ui.enableTextures);
ImGui::Checkbox("Tone mapping", (bool*)&m_ui.enableToneMapping);
ImGui::SameLine(160.f);
ImGui::SliderFloat("Exposure bias", &m_ui.exposureBias, -4.f, 2.f);
ImGui::Checkbox("Bloom", (bool*)&m_ui.enableBloom);
ImGui::Separator();
ImGui::PushItemWidth(150.f);
ImGui::Combo("Visualization", (int*)&m_ui.visualizationMode,
"None\0"
"Composited Color\0"
"Resolved Color\0"
"Diffuse\0"
"Specular\0"
"Diffuse (Denoised)\0"
"Specular (Denoised)\0"
"Reservoir Weight\0"
"Reservoir M\0"
"Diffuse Gradients\0"
"Specular Gradients\0"
"Diffuse Confidence\0"
"Specular Confidence\0"
"GI Reservoir Weight\0"
"GI Reservoir M\0"
);
ShowHelpMarker(
"For HDR signals, displays a horizontal cross-section of the specified channel.\n"
"The cross-section is taken in the middle of the screen, at the yellow line.\n"
"Horizontal lines show the values in log scale: the yellow line in the middle is 1.0,\n"
"above it are 10, 100, etc., and below it are 0.1, 0.01, etc.\n"
"The yellow \"fire\" at the bottom is shown where the displayed value is 0.\n"
"For confidence, shows a heat map with blue at full confidence and red at zero."
);
ImGui::Combo("Debug Render Target", (int*)&m_ui.debugRenderOutputBuffer,
"LDR Color\0"
"Depth\0"
"GBufferDiffuseAlbedo\0"
"GBufferSpecularRough\0"
"GBufferNormals\0"
"GBufferGeoNormals\0"
"GBufferEmissive\0"
"DiffuseLighting\0"
"SpecularLighting\0"
"DenoisedDiffuseLighting\0"
"DenoisedSpecularLighting\0"
"RestirLuminance\0"
"PrevRestirLuminance\0"
"DiffuseConfidence\0"
"SpecularConfidence\0"
"MotionVectors\0"
);
ImGui::PopItemWidth();
ImGui::TreePop();
}
}
#ifdef WITH_NRD
void UserInterface::DenoiserSettings()
{
const nrd::LibraryDesc& nrdLibraryDesc = nrd::GetLibraryDesc();
char s[128];
snprintf(s, sizeof(s) - 1, "Denoising (NRD v%u.%u.%u)", nrdLibraryDesc.versionMajor, nrdLibraryDesc.versionMinor, nrdLibraryDesc.versionBuild);
if (ImGui_ColoredTreeNode(s, c_ColorAttentionHeader))
{
ImGui::Checkbox("Enable Denoiser", &m_ui.enableDenoiser);
if (m_ui.enableDenoiser)
{
ImGui::SameLine();
ImGui::Checkbox("Advanced Settings", &m_showAdvancedDenoisingSettings);
int useReLAX = (m_ui.denoisingMethod == nrd::Denoiser::RELAX_DIFFUSE_SPECULAR) ? 1 : 0;
ImGui::Combo("Denoiser", &useReLAX, "ReBLUR\0ReLAX\0");
m_ui.denoisingMethod = useReLAX ? nrd::Denoiser::RELAX_DIFFUSE_SPECULAR : nrd::Denoiser::REBLUR_DIFFUSE_SPECULAR;
ImGui::SameLine();
if (ImGui::Button("Reset Settings"))
m_ui.SetDefaultDenoiserSettings();
ImGui::Separator();
ImGui::PushItemWidth(160.f);
ImGui::SliderFloat("Noise Mix-in", &m_ui.noiseMix, 0.f, 1.f);
ImGui::PopItemWidth();
ImGui::PushItemWidth(76.f);
ImGui::SliderFloat("##noiseClampLow", &m_ui.noiseClampLow, 0.f, 1.f);
ImGui::SameLine();
ImGui::SliderFloat("Noise Clamp", &m_ui.noiseClampHigh, 1.f, 4.f);
ImGui::PopItemWidth();
ImGui::Separator();
ImGui::Checkbox("Use Confidence Input", (bool*)&m_ui.lightingSettings.enableGradients);
if (m_ui.lightingSettings.enableGradients && m_showAdvancedDenoisingSettings)
{
ImGui::SliderFloat("Gradient Sensitivity", &m_ui.lightingSettings.gradientSensitivity, 1.f, 20.f);
ImGui::SliderFloat("Darkness Bias (EV)", &m_ui.lightingSettings.gradientLogDarknessBias, -16.f, -4.f);
ImGui::SliderFloat("Confidence History Length", &m_ui.lightingSettings.confidenceHistoryLength, 0.f, 3.f);
}
if (m_showAdvancedDenoisingSettings)
{
ImGui::Separator();