From a4f963f67b36920db3aaabccf8b966cb45c26e67 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Wed, 10 Jul 2019 22:15:39 +0900 Subject: [PATCH] Add a cvar to block use of x11 vidmode Or really, allow it if the user specifically requests it: the default is blocked. Modern systems (particularly displays) do not really like changing resolution, so doing so by default seems rather wrong. --- libs/video/targets/context_x11.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/libs/video/targets/context_x11.c b/libs/video/targets/context_x11.c index 41045fcdf..5c23d1875 100644 --- a/libs/video/targets/context_x11.c +++ b/libs/video/targets/context_x11.c @@ -125,6 +125,8 @@ static int accel_threshold; static Atom x_net_state; static Atom x_net_fullscreen; +static cvar_t *x11_vidmode; + static void set_fullscreen (int full) { @@ -387,6 +389,10 @@ X11_SetVidMode (int width, int height) if (vidmode_active) return; + if (!x11_vidmode->int_val) { + return; + } + if (str && (tolower (*str) == 'f')) { Cvar_Set (vid_fullscreen, "1"); } @@ -506,6 +512,9 @@ X11_Init_Cvars (void) "Toggles fullscreen game mode"); vid_system_gamma = Cvar_Get ("vid_system_gamma", "1", CVAR_ARCHIVE, NULL, "Use system gamma control if available"); + x11_vidmode = Cvar_Get ("x11_vidmode", "0", CVAR_ROM, 0, + "Use x11 vidmode extension to set video mode " + "(not recommended for modern systems)"); } void