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

27
game.d
View File

@ -580,21 +580,23 @@ public import arsd.joystick;
SimpleWindow create2dWindow(string title, int width = 512, int height = 512) {
auto window = new SimpleWindow(width, height, title, OpenGlOptions.yes);
window.setAsCurrentOpenGlContext();
window.visibleForTheFirstTime = () {
window.setAsCurrentOpenGlContext();
glEnable(GL_BLEND);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
glClearColor(0,0,0,0);
glDepthFunc(GL_LEQUAL);
glEnable(GL_BLEND);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
glClearColor(0,0,0,0);
glDepthFunc(GL_LEQUAL);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
glOrtho(0, width, height, 0, 0, 1);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
glOrtho(0, width, height, 0, 0, 1);
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
glDisable(GL_DEPTH_TEST);
glEnable(GL_TEXTURE_2D);
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
glDisable(GL_DEPTH_TEST);
glEnable(GL_TEXTURE_2D);
};
window.windowResized = (newWidth, newHeight) {
int x, y, w, h;
@ -612,6 +614,7 @@ SimpleWindow create2dWindow(string title, int width = 512, int height = 512) {
y = 0;
}
window.setAsCurrentOpenGlContext();
glViewport(x, y, w, h);
window.redrawOpenGlSceneSoon();
};

View File

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