blob: 437d61a60912fc6918b0028db5152de2a3694d98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#define GL_APICALL
#define GL_APIENTRY
// Define GL_GLEXT_PROTOTYPES so that the OpenGL extension prototypes in
// "gl2ext.h" and "gl3ext.h" are parsed.
#define GL_GLEXT_PROTOTYPES
#include <GLES3/gl31.h>
#include <GLES3/gl3ext.h>
/** Shared between ES2 and ES3 .. */
#include <GLES2/gl2ext-supplement.h>
#include <GLES2/gl2ext.h>
|