From df20a5f04b6e5bf45306705744f249f6a5af9e16 Mon Sep 17 00:00:00 2001 From: uis Date: Sun, 10 Dec 2023 21:28:55 +0300 Subject: [PATCH] Explicitly disable multisample --- vid_shared.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/vid_shared.c b/vid_shared.c index ab55661a..d8861d72 100644 --- a/vid_shared.c +++ b/vid_shared.c @@ -838,7 +838,10 @@ void GL_Setup(void) if (samples > 1) qglEnable(GL_MULTISAMPLE); else + { + qglDisable(GL_MULTISAMPLE); vid.allowalphatocoverage = false; + } } // currently MSAA antialiasing is not implemented for fbo viewports, so we actually have to force this off anyway. vid.allowalphatocoverage = false; -- 2.39.2