diff options
author | Sven Gothel <[email protected]> | 2014-10-08 08:17:23 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2014-10-08 22:31:32 +0200 |
commit | b56d805821cd694343456856dfd34666c0e2fc17 (patch) | |
tree | 1b0c5537973914c21df3249a86ee0fdeb8b840f9 /src/jogl/native | |
parent | c7ac21e7d25e5271f600806c93e3bd870d45bce3 (diff) |
Bug 1087: Set default framebuffer for OSX DummyDrawable, hence enforce NSView realization for DummyDrawable
Diffstat (limited to 'src/jogl/native')
-rw-r--r-- | src/jogl/native/macosx/MacOSXWindowSystemInterface.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jogl/native/macosx/MacOSXWindowSystemInterface.m b/src/jogl/native/macosx/MacOSXWindowSystemInterface.m index d4d3ddad9..462b5393d 100644 --- a/src/jogl/native/macosx/MacOSXWindowSystemInterface.m +++ b/src/jogl/native/macosx/MacOSXWindowSystemInterface.m @@ -556,8 +556,8 @@ NSOpenGLContext* createContext(NSOpenGLContext* share, GLint zeroOpacity = 0; [ctx setValues:&zeroOpacity forParameter:NSOpenGLCPSurfaceOpacity]; } + [ctx setView:view]; // Bug 1087: Set default framebuffer, hence enforce NSView realization if( viewReadyAndLocked ) { - [ctx setView:view]; [view unlockFocus]; } } |