this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fail gracefully if AppKit fails to setup a GL context

+2
+2
src/OpenGL/OpenGL.c
··· 90 90 } 91 91 92 92 CGL_EXPORT CGLError CGLContextMakeCurrentAndAttachToWindow(CGLContextObj context, CGLWindowRef window) { 93 + if (!context) 94 + return kCGLBadContext; 93 95 context->egl_surface = (EGLSurface) window; 94 96 return CGLSetCurrentContext(context); 95 97 }