SDL: edid-parse: print the HDR luminance information

From 75e280618e8120ae5ba19c20a654d595f86bcad9 Mon Sep 17 00:00:00 2001
From: Sam Lantinga <[EMAIL REDACTED]>
Date: Tue, 21 Jul 2026 16:53:10 -0700
Subject: [PATCH] edid-parse: print the HDR luminance information

---
 src/video/x11/edid-parse.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/video/x11/edid-parse.c b/src/video/x11/edid-parse.c
index 6760c83404900..bd537699eb2b6 100644
--- a/src/video/x11/edid-parse.c
+++ b/src/video/x11/edid-parse.c
@@ -719,6 +719,9 @@ dump_monitor_info (MonitorInfo *info)
     printf ("Blue Y: %f\n", info->blue_y);
     printf ("White X: %f\n", info->white_x);
     printf ("White Y: %f\n", info->white_y);
+    printf ("Min luminance: %f\n", info->min_luminance);
+    printf ("Max luminance: %f\n", info->max_luminance);
+    printf ("Max frame average luminance %f\n", info->max_frame_average_luminance);
     
     printf ("Established Timings:\n");