gdk-graphics 0b051eb9b5c1eaa0658babaa4463dd7a80aa9d2c
Loading...
Searching...
No Matches
opengl.h
1#ifndef GDK_OPENGL
2#define GDK_OPENGL
3
4#include <gdkgraphics/buildinfo.h>
5
6#ifdef JFC_TARGET_PLATFORM_Emscripten
7#include <GLES2/gl2.h>
8#elif defined JFC_TARGET_PLATFORM_Darwin
9#include <OpenGL/gl.h>
10#elif defined JFC_TARGET_PLATFORM_Linux
11#include <GL/glew.h>
12#elif defined JFC_TARGET_PLATFORM_Windows
13#define GLEW_STATIC
14#include <GL/glew.h>
15#else
16#error the current platform is not supported
17#endif
18
19#endif