mirror of https://github.com/adamdruppe/arsd.git
trying to track down a random hang and as quick as it came it was gone agian but meh
This commit is contained in:
parent
9881f555a5
commit
5c26eeb447
27
game.d
27
game.d
|
@ -580,21 +580,23 @@ 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.setAsCurrentOpenGlContext();
|
window.visibleForTheFirstTime = () {
|
||||||
|
window.setAsCurrentOpenGlContext();
|
||||||
|
|
||||||
glEnable(GL_BLEND);
|
glEnable(GL_BLEND);
|
||||||
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
|
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
|
||||||
glClearColor(0,0,0,0);
|
glClearColor(0,0,0,0);
|
||||||
glDepthFunc(GL_LEQUAL);
|
glDepthFunc(GL_LEQUAL);
|
||||||
|
|
||||||
glMatrixMode(GL_PROJECTION);
|
glMatrixMode(GL_PROJECTION);
|
||||||
glLoadIdentity();
|
glLoadIdentity();
|
||||||
glOrtho(0, width, height, 0, 0, 1);
|
glOrtho(0, width, height, 0, 0, 1);
|
||||||
|
|
||||||
glMatrixMode(GL_MODELVIEW);
|
glMatrixMode(GL_MODELVIEW);
|
||||||
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();
|
||||||
};
|
};
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
Loading…
Reference in New Issue