Auto HDR: Tuning hdr_settings.json for Non-Supported Games

The primary goal of tuning Auto HDR for unsupported games is to solve two issues: Brightness Clipping (blown-out highlights) and Compatibility. Windows Auto HDR uses an AI-based Inverse Tone Mapping (ITM) algorithm. By adjusting the hidden configuration files and registry keys, you can define the Peak Nit values for specific executables, ensuring that the “AI pop” doesn’t wash out blacks or crush shadow detail in older DirectX 11 titles.

File Path

Auto HDR “overrides” are handled in two locations. The hdr_settings.json is typically a community-made or tool-specific file (like Special K), while the native Windows settings are stored in the Registry.

  • Special K / Injector Config: [Game Path]\hdr_settings.json
  • Windows Native Registry: HKEY_CURRENT_USER\Software\Microsoft\DirectX\UserGpuPreferences

Technical Configuration (The 2026 “Ultra-Luminance” Template)

If you are using a tool like ForceAutoHDR or a manual JSON injector, use the following structure to define the HDR behavior for an unsupported game:

{
  "GameID": "Game.exe",
  "AutoHDR": {
    "Enabled": true,
    "Intensity": 0.85,
    "PeakLuminance": 1000,
    "SDRWhiteLevel": 200,
    "InverseToneMap": "HighQuality",
    "ForceFlipModel": true
  }
}

Parameter Breakdown:

  • “Intensity”: 0.85: Sets the “pop” factor. 1.0 is often too aggressive for games with stylized colors (like Elden Ring). 0.85 maintains the original artistic intent while expanding the range.
  • “PeakLuminance”: 1000: Set this to match your monitor’s VESA HDR rating (e.g., 400, 600, or 1000). Forcing this prevents the OS from “clipping” white details into a flat gray.
  • “SDRWhiteLevel”: 200: This controls the brightness of UI elements (HUDs, menus). Raising this prevents the “dim menu” syndrome often found in early Auto HDR implementations.
  • “ForceFlipModel”: true: The most critical setting. Auto HDR requires the DXGI Flip Model. Forcing this via config allows older DX11 “Exclusive Fullscreen” games to become compatible.

Strategy for 2026 Auto HDR Stability

  • The “Registry Force” Method: If a game refuses to use Auto HDR, you can force it natively via the Registry. Locate the entry for your game’s .exe in UserGpuPreferences and add/modify the string to include: AutoHDREnable=1;SwapEffectUpgradeEnable=1;
  • NVIDIA RTX HDR vs. Auto HDR: In 2026, if you have an NVIDIA GPU, RTX HDR (accessible via the NVIDIA App) is generally superior to Windows Auto HDR as it uses Tensor cores for more accurate color reconstruction. However, it has a higher performance cost (~5% FPS).
  • The Black Level Fix: Many Auto HDR implementations suffer from “raised blacks” (washed out dark areas). In your hdr_settings.json, ensure Gamma is set to 2.2 or sRGB specifically, as the AI sometimes defaults to a linear gamma that ruins contrast.
  • Win + Alt + B: Use this shortcut to toggle HDR system-wide before launching your “ForceAutoHDR” profile. This ensures the Windows Display Manager (DWM) is already in the HDR 10-bit color space before the game attempts to hook.

Key Performance & Quality Parameters

SettingRecommended ValueImpact
Intensity Slider60% – 85%Prevents neon colors from looking “nuclear” or fake.
SwapEffectUpgrade1 (Enabled)Upgrades DX11 to Flip Model; mandatory for Auto HDR.
Peak NitDisplay NativeMatches the signal to your panel’s physical limit.
SDR Brightness15 – 25 (OS Level)Keeps the desktop and HUD from being eye-searingly bright.

Frequently Asked Questions (FAQ)

Can I use Auto HDR in Vulkan or OpenGL games?

Natively, no. However, in 2026, you can use DXVK to wrap the game into DX11. Once it’s running in DX11, the hdr_settings.json logic will apply, and Auto HDR will trigger.

Why does my game look “washed out” with Auto HDR?

This usually happens because the game has an internal “Brightness” or “Gamma” setting that is set too high. Reset the in-game brightness to default and use the Xbox Game Bar (Win+G) intensity slider to adjust.

Does Auto HDR increase input lag?

Slightly (less than 2ms). Because Auto HDR forces the Flip Model, it actually reduces latency compared to old-school DX11 windowed modes, effectively canceling out the AI processing delay.

What is the “Calibration App” profile?

Always run the Windows HDR Calibration App from the Microsoft Store first. Auto HDR uses the profile generated by this app as its “master template” for every game you play.

Conclusion and Expected Results

By manually configuring the intensity and forcing the Flip Model via hdr_settings.json or the Registry, you can bring HDR to almost any title in your library. You can expect vibrant highlights that don’t lose detail, deeper contrast in dark scenes, and a modern visual facelift for games released over a decade ago.

Leave a Comment