From 76324979b90465bee07a7e66787f22b704e18444 Mon Sep 17 00:00:00 2001 From: Lukas Hermanns Date: Tue, 8 May 2018 10:11:29 +0200 Subject: [PATCH] Added missing call to 'update' on NSOpenGLContext object in 'makeContextCurrentNSGL'. --- src/nsgl_context.m | 1 + 1 file changed, 1 insertion(+) diff --git a/src/nsgl_context.m b/src/nsgl_context.m index d99235610..dcf6aad87 100644 --- a/src/nsgl_context.m +++ b/src/nsgl_context.m @@ -33,6 +33,7 @@ static void makeContextCurrentNSGL(_GLFWwindow* window) { #ifdef _GLFW_OPENGL_SINGLE_GLRC [window->context.nsgl.object setView:window->ns.view]; + [window->context.nsgl.object update]; #endif [window->context.nsgl.object makeCurrentContext]; }