blob: 050843a99d58d3f39c41c7d14db13b674fbdfb5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
typedef struct _EAGLContext EAGLContext;
typedef struct _EAGLSharegroup EAGLSharegroup;
typedef struct _EAGLDrawable EAGLDrawable;
typedef enum _EAGLRenderingAPI
{
kEAGLRenderingAPIOpenGLES1 = 1,
kEAGLRenderingAPIOpenGLES2 = 2,
kEAGLRenderingAPIOpenGLES3 = 3,
} EAGLRenderingAPI;
void EAGLGetVersion(unsigned int* major, unsigned int* minor);
|