Fixed: #1154 glViewport size wrong when switching from native fullscreen resolution to maximized window
This commit is contained in:
parent
1bfcb0b58a
commit
0c5854ecc8
1 changed files with 4 additions and 3 deletions
|
@ -955,6 +955,10 @@ bool CDriverGL::setDisplay(nlWindow wnd, const GfxMode &mode, bool show, bool re
|
|||
if(!format)
|
||||
nlerror("cannot create NSOpenGLPixelFormat");
|
||||
|
||||
// intially set height/width, further updates through CocoaOpenGLView
|
||||
_WindowHeight = mode.Height;
|
||||
_WindowWidth = mode.Width;
|
||||
|
||||
// create a opengl view with the created format
|
||||
_glView = [[CocoaOpenGLView alloc]
|
||||
initWithFrame:NSMakeRect(0, 0, mode.Width, mode.Height)
|
||||
|
@ -2423,9 +2427,6 @@ void CDriverGL::setWindowSize(uint32 width, uint32 height)
|
|||
}
|
||||
}
|
||||
|
||||
_WindowWidth = width;
|
||||
_WindowHeight = height;
|
||||
|
||||
#elif defined(NL_OS_UNIX)
|
||||
|
||||
if (width != _WindowWidth || height != _WindowHeight)
|
||||
|
|
Loading…
Reference in a new issue