Testing SDL support

This commit is contained in:
2021-08-14 12:02:34 -07:00
parent dc5a4d4f73
commit 18152a0814
11 changed files with 234 additions and 53 deletions

View File

@ -13,6 +13,11 @@
#if SETTING_PLATFORM == SETTING_PLATFORM_GLFW
#include <glad/glad.h>
#elif SETTING_PLATFORM == SETTING_PLATFORM_SDL
#include <glad/glad.h>
#include <SDL.h>
#include <SDL_opengl.h>
#include <SDL_opengles2.h>
#endif
#include <stb_image.h>