From fa35d701a75aa5f671c9ee97cf4f55e7b098514d Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Thu, 2 May 2013 17:30:57 +0200 Subject: [PATCH] Fixed sharing between windowed and fullscreen windows. --- src/nsgl_context.m | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/nsgl_context.m b/src/nsgl_context.m index b6747e96..09b0de0f 100644 --- a/src/nsgl_context.m +++ b/src/nsgl_context.m @@ -138,13 +138,6 @@ int _glfwCreateContext(_GLFWwindow* window, ADD_ATTR(NSOpenGLPFADoubleBuffer); - if (wndconfig->monitor) - { - ADD_ATTR(NSOpenGLPFANoRecovery); - ADD_ATTR2(NSOpenGLPFAScreenMask, - CGDisplayIDToOpenGLDisplayMask(wndconfig->monitor->ns.displayID)); - } - #if MAC_OS_X_VERSION_MAX_ALLOWED >= 1070 if (wndconfig->glMajor > 2) ADD_ATTR2(NSOpenGLPFAOpenGLProfile, NSOpenGLProfileVersion3_2Core);