Fix #628 OpenGL in SDL isn't initialized properly

This commit is contained in:
Grim Maple 2022-10-25 18:08:02 +03:00
parent a5def713ec
commit dc3c083a42
1 changed files with 6 additions and 1 deletions

View File

@ -1159,7 +1159,12 @@ private extern(C) uint myTimerCallbackFunc(uint interval, void *param) nothrow {
private __gshared bool _enableOpengl;
class SDLPlatform : Platform {
this() {
this()
{
static if(ENABLE_OPENGL)
_enableOpengl = true;
else
_enableOpengl = false;
}
private SDLWindow[uint] _windowMap;