crude legacy GL backend w/ anti aliasing

This commit is contained in:
2022-11-16 04:46:33 +11:00
parent fc9a6571ec
commit 9ba7a3bda8
5 changed files with 197 additions and 3 deletions

View File

@ -38,6 +38,7 @@ int main(int argc, char** argv)
const int winflg = SDL_WINDOW_RESIZABLE | SDL_WINDOW_ALLOW_HIGHDPI;
int winw = WINDOW_WIDTH;
int winh = WINDOW_HEIGHT;
DrawWindowHints();
window = SDL_CreateWindow(CAPTION, winpos, winpos, winw, winh, winflg);
FATAL(window == NULL, -1)