From 7206756952bf9d72008727fe88134dfa808a9adf Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Tue, 1 Jan 2013 15:13:27 +0900 Subject: [PATCH] Produce a vidmode list for developer output. vidmode is starting to show its age. Modern X doesn't need a config file, and when one is not available, the list of available resolutions is quite strange. Time to look into randr support. --- libs/video/targets/context_x11.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/libs/video/targets/context_x11.c b/libs/video/targets/context_x11.c index 166595f51..dc9ae9a0c 100644 --- a/libs/video/targets/context_x11.c +++ b/libs/video/targets/context_x11.c @@ -426,6 +426,14 @@ X11_SetVidMode (int width, int height) &vidmodes); XF86VidModeGetModeLine (x_disp, x_screen, &dotclock, &orig_data); + if (developer->int_val & SYS_VID) { + Sys_Printf ("VID: %d modes\n", nummodes); + for (i = 0; i < nummodes; i++) { + Sys_Printf ("VID: %xx%d\n", vidmodes[i]->hdisplay, + vidmodes[i]->vdisplay); + } + } + for (i = 0; i < nummodes; i++) { if ((vidmodes[i]->hdisplay == orig_data.hdisplay) && (vidmodes[i]->vdisplay == orig_data.vdisplay)) {