Skip to content
The Jenkins Controller is preparing for shutdown. No new builds can be started.
Unstable

Changes

Summary

  1. Bug 1202: Fix vsync regression on OSX when using CALayer (details)
  2. Bug 1212 - OSX: Crash using CALayer at UnsetJAWTRootSurfaceLayer0(..) (details)
Commit aacc8afdca0b1376f91dcc68aa3ae3b39c7aba51 by Sven Gothel
Bug 1202: Fix vsync regression on OSX when using CALayer
On OSX using CALayer for onscreen rendering, the drawable is utilizing
an offscreen FBO.
Hence we need to move the vsync-skip-operation criteria, i.e. skip if
offscreen, down to the implementation.
The file was modifiedmake/scripts/tests.sh (diff)
The file was modifiedsrc/jogl/classes/jogamp/opengl/GLContextImpl.java (diff)
The file was modifiedsrc/jogl/classes/jogamp/opengl/macosx/cgl/MacOSXCGLContext.java (diff)
The file was modifiedsrc/jogl/classes/jogamp/opengl/x11/glx/X11GLXContext.java (diff)
The file was modifiedsrc/jogl/classes/jogamp/opengl/windows/wgl/WindowsWGLContext.java (diff)
The file was modifiedsrc/jogl/classes/jogamp/opengl/egl/EGLContext.java (diff)
Commit 85b32bac4f031dbdb55caa380d5a20440aecbbbd by Sven Gothel
Bug 1212 - OSX: Crash using CALayer at UnsetJAWTRootSurfaceLayer0(..)
w/ Java 1.8.0_60
- OSX 10.10.5
- Java 1.8.0_60
Crash using CALayer at UnsetJAWTRootSurfaceLayer0(..) as called within
MacOSXJAWTWindow.invalidateNative() (caller: destroy()) on the
MainThread.
It has been observed that the JAWT_SurfaceLayers protocol instance
'surfaceLayers' has been pulled beforehand.
'surfaceLayers' is fetched from the locked JAWT instance via
JAWT_DrawingSurfaceInfo's platformInfo.
It now seems required to retain the instance at
GetJAWTSurfaceLayersHandle0 and release it at
UnsetJAWTRootSurfaceLayer0 to keep it alive.
+++
Manually executed 'ant junit.run' on OSX, no failures or errors.
The file was modifiedsrc/nativewindow/classes/jogamp/nativewindow/jawt/macosx/MacOSXJAWTWindow.java (diff)
The file was modifiedsrc/nativewindow/native/macosx/OSXmisc.m (diff)
The file was modifiedmake/scripts/tests.sh (diff)