1/*
2** Types and resources
3*/
4typedef int EGLBoolean;
5typedef long EGLint;
6typedef void *EGLDisplay;
7typedef void *EGLConfig;
8typedef void *EGLSurface;
9typedef void *EGLContext;
10typedef void *NativeDisplayType;
11typedef void *NativeWindowType;
12typedef void *NativePixmapType;
13
14/*
15** EGL and native handle values
16*/
17#define EGL_DEFAULT_DISPLAY ((NativeDisplayType)0)
18#define EGL_NO_CONTEXT ((EGLContext)0)
19#define EGL_NO_DISPLAY ((EGLDisplay)0)
20#define EGL_NO_SURFACE ((EGLSurface)0)
21