opengl resize bug on windows

This commit is contained in:
Adam D. Ruppe 2023-01-25 19:43:59 -05:00
parent feb8640857
commit bac06fb954
1 changed files with 2 additions and 1 deletions

View File

@ -3727,6 +3727,7 @@ private:
version(without_opengl) {} else
if(openglMode == OpenGlOptions.yes && resizability == Resizability.automaticallyScaleIfPossible) {
import std.stdio; writeln(width, " ", height);
setAsCurrentOpenGlContextNT();
glViewport(0, 0, width, height);
}
@ -12318,7 +12319,7 @@ version(Windows) {
}
}
updateOpenglViewportIfNeeded(width, height);
updateOpenglViewportIfNeeded(_width, _height);
if(resizability != Resizability.automaticallyScaleIfPossible)
if(windowResized !is null)