blob: 44d631ea6677f4fbc5367a04081bee3af7985b18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifdef PACC_GL_ES
# ifdef PACC_GL_3
#include <GLES3/gl3.h>
# else
#include <GLES2/gl2.h>
# endif
#else
#define GL_GLEXT_PROTOTYPES
# ifdef PACC_GL_3
#include <GL/glcorearb.h>
# else
#include <GL/gl.h>
#include <GL/glext.h>
# endif
#endif
|