]> git.tdb.fi Git - libs/gl.git/blobdiff - source/gl.h
Remove the deprecated ProgramBuilder class
[libs/gl.git] / source / gl.h
index 9a7cb9cd88a338aaf44582dac1a2b65fbdda969d..f27b63fe8cf68c1ff302511907be0984fa9eb9e8 100644 (file)
 #undef extern
 #pragma clang diagnostic pop
 #elif defined(__ANDROID__)
-#include <GLES2/gl2.h>
-#include <GLES2/gl2ext.h>
+#include <GLES3/gl3.h>
+#include <GLES3/gl3ext.h>
 typedef double GLdouble;
 typedef long long GLint64;
 #else
-#ifdef WIN32
-#include <windows.h>
+#ifdef _WIN32
+#ifndef WINAPI
+#if defined(_ARM_)
+#define WINAPI
+#else
+#define WINAPI __stdcall
+#endif
+#endif
+#ifndef APIENTRY
+#define APIENTRY WINAPI
+#endif
+#ifndef DECLSPEC_IMPORT
+#define DECLSPEC_IMPORT __declspec(dllimport)
+#endif
+#ifndef WINGDIAPI
+#define WINGDIAPI DECLSPEC_IMPORT
+#endif
 #endif
 #include <GL/gl.h>
 #include <GL/glext.h>