You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"The minimum debug view input value to map to 0 in the output when the standard debug display is in use. Values below this value in the input will be clamped to 0 in the output.",
"The maximum debug view input value to map to 1 in the output when the standard debug display is in use. Values above this value in the input will be clamped to 1 in the output.",
"This controls the max number of training iterations to perform in a frame.\n"
67
67
"When the pathtracer generates more training records than the ideal number of training records\n"
@@ -122,7 +122,7 @@ namespace dxvk {
122
122
RTX_OPTION("rtx.neuralRadianceCache", bool, enableCalculateTrainingLoss, false, "Enables calculation of a training loss. Imposes a performance penalty.");
123
123
RTX_OPTION("rtx.neuralRadianceCache", bool, enableAdaptiveTrainingDimensions, true, "Enables adaptive training dimensions that scale based off pathtracer's execution behavior on a given scene.");
// If this happens on an option that should be clampable, the type probably needs to be added to isClampable(), and supported in the clampValue() method.
469
-
assert(false && "RtxOption - args.minValue and args.maxValue are not supported for types not included in isClampable().");
470
-
}
471
466
globalRtxOptions[optionHash] = pImpl;
472
467
returntrue;
473
468
} else {
@@ -478,6 +473,21 @@ namespace dxvk {
478
473
}
479
474
}
480
475
476
+
// This needs to be done after the valueList is initialized in the constructor.
// If this happens on an option that should be clampable, the type probably needs to be added to isClampable(), and supported in the clampValue() method.
487
+
assert(false && "RtxOption - args.minValue and args.maxValue are not supported for types not included in isClampable().");
0 commit comments