From 13cd50f92c3b26c00ed0c990b2041fae5ce1281c Mon Sep 17 00:00:00 2001 From: Geoffrey McRae <geoff@hostfission.com> Date: Sat, 28 Jul 2018 10:36:41 +1000 Subject: [PATCH] [client] disable multisample after logo is gone We only use multisample to smooth out the edges of the LG logo, it is pointless to leave it on after the logo is gone. --- client/renderers/opengl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/client/renderers/opengl.c b/client/renderers/opengl.c index bcccdfe0..30f56772 100644 --- a/client/renderers/opengl.c +++ b/client/renderers/opengl.c @@ -662,6 +662,7 @@ static void render_wait(struct Inst * this) uint64_t t = microtime(); if (t > this->waitFadeTime) { + glDisable(GL_MULTISAMPLE); this->waitDone = true; return; }