@@ -198,6 +198,9 @@ const std::unordered_map<std::string, float> NEUTRAL_VALUES = {
198198 {" ColorGradeConeResponse" , 50 .f },
199199 {" ColorGradeContrast" , 50 .f },
200200 {" ColorGradeSaturation" , 50 .f },
201+ {" ColorGradeHighlights" , 50 .f },
202+ {" CustomToneMapMidgrayAdjust" , 100 .f },
203+ {" LocalLightHueCorrection" , 25 .f }
201204};
202205
203206renodx::mods::shader::CustomShaders custom_shaders = {__ALL_CUSTOM_SHADERS};
@@ -398,7 +401,7 @@ renodx::utils::settings::Settings settings = {
398401 new renodx::utils::settings::Setting{
399402 .key = " ColorGradeHighlights" ,
400403 .binding = &shader_injection.tone_map_highlights ,
401- .default_value = 50 .f ,
404+ .default_value = 46 .f ,
402405 .label = " Highlights" ,
403406 .section = " Color Grading" ,
404407 .tint = color_grading,
@@ -410,7 +413,7 @@ renodx::utils::settings::Settings settings = {
410413 new renodx::utils::settings::Setting{
411414 .key = " ColorGradeShadows" ,
412415 .binding = &shader_injection.tone_map_shadows ,
413- .default_value = 40 .f ,
416+ .default_value = 50 .f ,
414417 .label = " Shadows" ,
415418 .section = " Color Grading" ,
416419 .tint = color_grading,
@@ -422,19 +425,19 @@ renodx::utils::settings::Settings settings = {
422425 new renodx::utils::settings::Setting{
423426 .key = " ColorGradeContrast" ,
424427 .binding = &shader_injection.tone_map_contrast ,
425- .default_value = 40 .f ,
428+ .default_value = 55 .f ,
426429 .label = " Contrast" ,
427430 .section = " Color Grading" ,
428431 .tint = color_grading,
429432 .max = 100 .f ,
430433 .is_enabled = []() { return RENODX_TONE_MAP_TYPE != 0 .f ; },
431434 .parse = [](float value) { return value * 0 .02f ; },
432- .is_visible = []() { return current_settings_mode >= 1 .f && RENODX_TONE_MAP_TYPE != 0 . f ; },
435+ .is_visible = []() { return current_settings_mode >= 1 .f ; },
433436 },
434437 new renodx::utils::settings::Setting{
435438 .key = " ColorGradeSaturation" ,
436439 .binding = &shader_injection.tone_map_saturation ,
437- .default_value = 50 .f ,
440+ .default_value = 65 .f ,
438441 .label = " Saturation" ,
439442 .section = " Color Grading" ,
440443 .tint = color_grading,
@@ -447,7 +450,7 @@ renodx::utils::settings::Settings settings = {
447450 new renodx::utils::settings::Setting{
448451 .key = " ColorGradeConeResponse" ,
449452 .binding = &shader_injection.tone_map_cone_response ,
450- .default_value = 65 .f ,
453+ .default_value = 50 .f ,
451454 .label = " Cone Response" ,
452455 .section = " Color Grading" ,
453456 .tooltip = " Controls the PsychoV cone response shaping." ,
@@ -473,7 +476,7 @@ renodx::utils::settings::Settings settings = {
473476 new renodx::utils::settings::Setting{
474477 .key = " ToneMapBlowout" ,
475478 .binding = &shader_injection.tone_map_blowout ,
476- .default_value = 0 .f ,
479+ .default_value = 20 .f ,
477480 .label = " Blowout" ,
478481 .section = " Color Grading" ,
479482 .tooltip = " Desaturates the brightest portions of the image, also relative to peak brightness." ,
@@ -486,7 +489,7 @@ renodx::utils::settings::Settings settings = {
486489 new renodx::utils::settings::Setting{
487490 .key = " CustomToneMapMidgrayAdjust" ,
488491 .binding = &shader_injection.custom_tone_map_midgray_adjust ,
489- .default_value = 100 .f ,
492+ .default_value = 75 .f ,
490493 .label = " SDR Midgray" ,
491494 .section = " Color Grading" ,
492495 .tooltip = " Controls matching mid-gray of the SDR tone mapper. Applies to Vanilla/Custom AE only. 100 = Vanilla, 0 = Neutral." ,
@@ -563,7 +566,7 @@ renodx::utils::settings::Settings settings = {
563566 new renodx::utils::settings::Setting{
564567 .key = " LocalLightHueCorrection" ,
565568 .binding = &shader_injection.local_light_hue_correction ,
566- .default_value = 25 .f ,
569+ .default_value = 15 .f ,
567570 .can_reset = true ,
568571 .label = " Flame Hue Correction" ,
569572 .section = " Local Lighting" ,
0 commit comments