Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
shiny/driver/mtldriver: update to GLFW v3.3
GLFW v3.2 was old and started generating some warnings on macOS 10.15 Catalina (and warnings get upgraded to errors on builders). Update to GLFW v3.3 that was recently released to resolve the problem. There is a small regression affecting the newer version of GLFW that is being tracked in issues glfw/glfw#1543 and go-gl/glfw#262. It causes the application to crash when glfwWaitEvents is called before the first window is opened: $ go run -tags='example metal' .../shiny/example/basic 2019-11-25 22:19:24.715 basic[9412:69556] *** Assertion failure in -[NSApplication run], /BuildRoot/Library/Caches/com.apple.xbs/Sources/AppKit/AppKit-1894.10.126/AppKit.subproj/NSApplication.m:3313 2019-11-25 22:19:24.715 basic[9412:69556] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'NSApp with wrong _running count' *** First throw call stack: ( 0 CoreFoundation 0x00007fff30503f53 __exceptionPreprocess + 250 1 libobjc.A.dylib 0x00007fff665c9835 objc_exception_throw + 48 2 CoreFoundation 0x00007fff3051f810 +[NSException raise:format:arguments:] + 88 3 Foundation 0x00007fff32bff5d1 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 191 4 AppKit 0x00007fff2d657ed3 -[NSApplication run] + 1007 5 basic 0x00000000040d473d _glfwPlatformCreateWindow + 77 6 basic 0x00000000040cd945 glfwCreateWindow + 485 7 basic 0x00000000040da71b _cgo_78603e0816ec_Cfunc_glfwCreateWindow + 43 8 basic 0x0000000004058430 runtime.asmcgocall + 112 ) libc++abi.dylib: terminating with uncaught exception of type NSException SIGABRT: abort PC=0x7fff67a7b49a m=0 sigcode=0 signal arrived during cgo execution [...] Work around it by waiting for the first window open request before entering the main loop. That way, glfwWaitEvents is not called before a window has been created, and the crash does not occur. This temporary workaround can be removed after the bug is fixed. Fixes golang/go#35766 Updates go-gl/glfw#256 Updates glfw/glfw#1543 Updates go-gl/glfw#262 Change-Id: Ie9b15ab6632af39871d94993a3e3097ea798a7e2 Reviewed-on: https://go-review.googlesource.com/c/exp/+/208877 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
- Loading branch information