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 <stdlib.h>
#if defined(__APPLE__)
#include <OpenGL/gl.h>
#else
#include <GL/gl.h>
#endif
//#if defined(__APPLE__)
// #include <OpenGL/gl.h>
//#else
// #include <GL/gl.h>
//#endif
#include <GLFW/glfw3.h>
#include "../../../Misc.h"