mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-13 18:59:05 +00:00
Fixed: #1062 Fullscreen with game resolution < desktop resolution
This commit is contained in:
parent
8556bb970b
commit
e42399e5be
1 changed files with 5 additions and 0 deletions
|
@ -500,6 +500,11 @@ void setWindowSize(nlWindow wnd, uint32 width, uint32 height)
|
||||||
// for fullscreen mode, adjust the back buffer size to the desired resolution
|
// for fullscreen mode, adjust the back buffer size to the desired resolution
|
||||||
if([superview isInFullScreenMode])
|
if([superview isInFullScreenMode])
|
||||||
{
|
{
|
||||||
|
// disable and re-enable fullscreen
|
||||||
|
// fixes #1062 (http://dev.ryzom.com/issues/1062)
|
||||||
|
setWindowStyle(wnd, false);
|
||||||
|
setWindowStyle(wnd, true);
|
||||||
|
|
||||||
// set the back buffer manually to match the desired rendering resolution
|
// set the back buffer manually to match the desired rendering resolution
|
||||||
GLint dim[2] = { width, height };
|
GLint dim[2] = { width, height };
|
||||||
CGLError error = CGLSetParameter(
|
CGLError error = CGLSetParameter(
|
||||||
|
|
Loading…
Reference in a new issue