From 45ba5a8576b3d5e1ae88cd41bd7ddad421d99c33 Mon Sep 17 00:00:00 2001 From: sit-d <281093367+sit-d@users.noreply.github.com> Date: Fri, 3 Jul 2026 02:44:19 -0600 Subject: [PATCH] docs: add hdrinfo Pages posts --- hype/hdrinfo.html | 101 +++++++++++++++++++++++++++++++++++++++++++ hype/index.html | 6 +++ reviews/hdrinfo.html | 61 ++++++++++++++++++++++++++ reviews/index.html | 5 +++ 4 files changed, 173 insertions(+) create mode 100644 hype/hdrinfo.html create mode 100644 reviews/hdrinfo.html diff --git a/hype/hdrinfo.html b/hype/hdrinfo.html new file mode 100644 index 0000000..fb878f5 --- /dev/null +++ b/hype/hdrinfo.html @@ -0,0 +1,101 @@ + + + + + + hdrinfo: HDR Truth Before You Tune Pixels + + + +
+
+
Hype Post
+

hdrinfo gives HDR work a real display baseline

+

+ Before you tune a swap chain, tone mapper, or bug report around "HDR looks wrong", capture what Windows and DXGI actually know about the active outputs. + hdrinfo condenses that state into one shareable CLI report. +

+
+
Tool: hdrinfo
+
Date: July 03, 2026
+
Sources: DisplayConfig + IDXGIOutput6
+
Build: single C file, Windows SDK
+
+
+ +
+

Fastest Win: Separate Panel Capability From OS State

+

Run the tool once and you can tell whether the problem is hardware support, the Windows HDR toggle, link format, or tone-mapping assumptions.

+
cl /O2 /W4 hdrinfo.c /link dxgi.lib dxguid.lib user32.lib
+hdrinfo.exe
+
HDR supported     : YES
+HDR enabled       : YES
+Bits per channel  : 10 bpc
+Color encoding    : RGB
+SDR white level   : 240 nits (slider 300.0%)
+DXGI color space  : HDR10 (PQ / BT.2020)
+
+ +
+

Workflow 1: Pick the Swap-Chain Format With Evidence

+

Use the combined report as a pre-flight before choosing SDR, HDR10, or FP16/scRGB output paths.

+ +
+ +
+

Workflow 2: Normalize SDR UI in HDR

+

The SDR white level gives a concrete scale factor for legacy UI brightness in an HDR desktop.

+
scRGB white scale = SDRWhiteNits / 80.0
+240 nits / 80 nits = 3.0
+

That turns a subjective "too dim" or "washed out" report into a reproducible value to apply or compare.

+
+ +
+

Workflow 3: Capture Tone-Mapping Anchors

+

DXGI luminance and primary coordinates provide practical limits for highlight clipping, full-frame brightness, black floor, and gamut expectations.

+ +
+ +
+

Guardrails

+

hdrinfo reports OS/display metadata; it does not measure the panel with a colorimeter or prove what an application rendered. Treat it as the first diagnostic artifact, then pair it with screenshots, captures, or instrumented rendering logs when chasing visual defects.

+
+
+ + diff --git a/hype/index.html b/hype/index.html index a5fde4a..bedb85c 100644 --- a/hype/index.html +++ b/hype/index.html @@ -91,6 +91,12 @@

modsnap

Get script-friendly module truth for a process in table, path, CSV, or count mode.
+ +

hdrinfo

+
July 03, 2026
+
Turn Windows HDR display state into a practical report for swap-chain and tone-mapping decisions.
+
+

quuid

February 02, 2026
diff --git a/reviews/hdrinfo.html b/reviews/hdrinfo.html new file mode 100644 index 0000000..f593f32 --- /dev/null +++ b/reviews/hdrinfo.html @@ -0,0 +1,61 @@ + + + + + + Tool Review: hdrinfo + + + +
+

Tool Review: hdrinfo

+

Date: July 03, 2026

+

Executive verdict: hdrinfo is a strong fit for the repository: a single-file Windows CLI that turns hard-to-see HDR display state into actionable diagnostics. Recommendation: keep and improve.

+ +

What It Does Well

+ + +

Limitations and Risks

+ + +

Alternatives and Tradeoffs

+ + +

Workflow Fit

+ + +

Evidence Snapshot

+ + +

Final Recommendation

+

Recommendation: keep and improve. The best follow-up is a --json mode with stable field names, plus optional monitor selection for multi-display systems.

+
+ + diff --git a/reviews/index.html b/reviews/index.html index 4f80b73..355f671 100644 --- a/reviews/index.html +++ b/reviews/index.html @@ -69,6 +69,11 @@

Critical Reviews

Review post
Module snapshot workflow value and comparison to debugger-native paths.
+ +
hdrinfo
+
Review post
+
HDR/display capability report fit, source coverage, and workflow limits.
+
quuid
Review post