mirror of https://github.com/adamdruppe/arsd.git
opengl resize bug on windows
This commit is contained in:
parent
feb8640857
commit
bac06fb954
|
@ -3727,6 +3727,7 @@ private:
|
||||||
|
|
||||||
version(without_opengl) {} else
|
version(without_opengl) {} else
|
||||||
if(openglMode == OpenGlOptions.yes && resizability == Resizability.automaticallyScaleIfPossible) {
|
if(openglMode == OpenGlOptions.yes && resizability == Resizability.automaticallyScaleIfPossible) {
|
||||||
|
import std.stdio; writeln(width, " ", height);
|
||||||
setAsCurrentOpenGlContextNT();
|
setAsCurrentOpenGlContextNT();
|
||||||
glViewport(0, 0, width, height);
|
glViewport(0, 0, width, height);
|
||||||
}
|
}
|
||||||
|
@ -12318,7 +12319,7 @@ version(Windows) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
updateOpenglViewportIfNeeded(width, height);
|
updateOpenglViewportIfNeeded(_width, _height);
|
||||||
|
|
||||||
if(resizability != Resizability.automaticallyScaleIfPossible)
|
if(resizability != Resizability.automaticallyScaleIfPossible)
|
||||||
if(windowResized !is null)
|
if(windowResized !is null)
|
||||||
|
|
Loading…
Reference in New Issue