trying to track down a random hang and as quick as it came it was gone agian but meh

This commit is contained in:
Adam D. Ruppe 2024-08-29 20:33:12 -04:00
parent 9881f555a5
commit 5c26eeb447
2 changed files with 20 additions and 12 deletions

3
game.d
View File

@ -580,6 +580,7 @@ public import arsd.joystick;
SimpleWindow create2dWindow(string title, int width = 512, int height = 512) { SimpleWindow create2dWindow(string title, int width = 512, int height = 512) {
auto window = new SimpleWindow(width, height, title, OpenGlOptions.yes); auto window = new SimpleWindow(width, height, title, OpenGlOptions.yes);
window.visibleForTheFirstTime = () {
window.setAsCurrentOpenGlContext(); window.setAsCurrentOpenGlContext();
glEnable(GL_BLEND); glEnable(GL_BLEND);
@ -595,6 +596,7 @@ SimpleWindow create2dWindow(string title, int width = 512, int height = 512) {
glLoadIdentity(); glLoadIdentity();
glDisable(GL_DEPTH_TEST); glDisable(GL_DEPTH_TEST);
glEnable(GL_TEXTURE_2D); glEnable(GL_TEXTURE_2D);
};
window.windowResized = (newWidth, newHeight) { window.windowResized = (newWidth, newHeight) {
int x, y, w, h; int x, y, w, h;
@ -612,6 +614,7 @@ SimpleWindow create2dWindow(string title, int width = 512, int height = 512) {
y = 0; y = 0;
} }
window.setAsCurrentOpenGlContext();
glViewport(x, y, w, h); glViewport(x, y, w, h);
window.redrawOpenGlSceneSoon(); window.redrawOpenGlSceneSoon();
}; };

View File

@ -12035,6 +12035,9 @@ version(Windows) {
CW_USEDEFAULT, CW_USEDEFAULT, width, height, CW_USEDEFAULT, CW_USEDEFAULT, width, height,
parent is null ? null : parent.impl.hwnd, null, hInstance, null); parent is null ? null : parent.impl.hwnd, null, hInstance, null);
if(!hwnd)
throw new WindowsApiException("CreateWindowEx", GetLastError());
if ((customizationFlags & WindowFlags.extraComposite) != 0) if ((customizationFlags & WindowFlags.extraComposite) != 0)
setOpacity(255); setOpacity(255);
@ -12046,6 +12049,8 @@ version(Windows) {
HDC hdc = GetDC(hwnd); HDC hdc = GetDC(hwnd);
if(!hdc)
throw new WindowsApiException("GetDC", GetLastError());
version(without_opengl) {} version(without_opengl) {}
else { else {