From 211cf2b64c06ff37d9cd9266a9dcd2deacae87d2 Mon Sep 17 00:00:00 2001 From: Josh Faust <1388377+jfaust@users.noreply.github.com> Date: Wed, 1 Jun 2022 15:40:54 -0700 Subject: [PATCH] Remove NSOpenGLPFANoRecovery requirement when creating the NSOpenGLContext (#5626) --- filament/backend/src/opengl/platforms/PlatformCocoaGL.mm | 1 - 1 file changed, 1 deletion(-) diff --git a/filament/backend/src/opengl/platforms/PlatformCocoaGL.mm b/filament/backend/src/opengl/platforms/PlatformCocoaGL.mm index 107c8a64b4..c495968936 100644 --- a/filament/backend/src/opengl/platforms/PlatformCocoaGL.mm +++ b/filament/backend/src/opengl/platforms/PlatformCocoaGL.mm @@ -145,7 +145,6 @@ Driver* PlatformCocoaGL::createDriver(void* sharedContext) noexcept { NSOpenGLPFADepthSize, (NSOpenGLPixelFormatAttribute) 24, NSOpenGLPFADoubleBuffer, (NSOpenGLPixelFormatAttribute) true, NSOpenGLPFAAccelerated, (NSOpenGLPixelFormatAttribute) true, - NSOpenGLPFANoRecovery, (NSOpenGLPixelFormatAttribute) true, 0, 0, };