Fix GLFW3 software renderer in VS2019

GLFW will include these headers for us properly
This commit is contained in:
Clownacy 2020-07-08 15:50:44 +01:00
parent adb09e19b7
commit 565c79a4ce

View file

@ -3,11 +3,11 @@
#include <stddef.h> #include <stddef.h>
#include <stdlib.h> #include <stdlib.h>
#if defined(__APPLE__) //#if defined(__APPLE__)
#include <OpenGL/gl.h> // #include <OpenGL/gl.h>
#else //#else
#include <GL/gl.h> // #include <GL/gl.h>
#endif //#endif
#include <GLFW/glfw3.h> #include <GLFW/glfw3.h>
#include "../../../Misc.h" #include "../../../Misc.h"