1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-02-02 11:45:13 +01:00

add OpenGL drawing engine with FillRect impl

This commit is contained in:
Ted John
2016-06-04 14:44:05 +01:00
parent d20a8a1daa
commit 2fa0c7977a
8 changed files with 332 additions and 5 deletions

View File

@@ -640,7 +640,7 @@ static void platform_create_window()
// Create window in window first rather than fullscreen so we have the display the window is on first
gWindow = SDL_CreateWindow(
"OpenRCT2", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, width, height, SDL_WINDOW_RESIZABLE
"OpenRCT2", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, width, height, SDL_WINDOW_RESIZABLE | SDL_WINDOW_OPENGL
);
if (!gWindow) {