summaryrefslogtreecommitdiff
path: root/include/GLES/egltypes.h
diff options
context:
space:
mode:
authorChia-I Wu <olv@lunarg.com>2010-05-31 10:15:55 +0800
committerChia-I Wu <olv@lunarg.com>2010-05-31 10:43:17 +0800
commit59f8dca7cf7ce2b21d3bfe59c55bd3927de7f39c (patch)
tree9469f2978162b8851354053776f3ffb6f2c08c50 /include/GLES/egltypes.h
parent8e1b375a8d186c0241239630f766f20513fa5371 (diff)
Update OpenGL ES headers.
Diffstat (limited to 'include/GLES/egltypes.h')
-rw-r--r--include/GLES/egltypes.h45
1 files changed, 0 insertions, 45 deletions
diff --git a/include/GLES/egltypes.h b/include/GLES/egltypes.h
deleted file mode 100644
index 6e98265043..0000000000
--- a/include/GLES/egltypes.h
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
-** egltypes.h for Mesa
-**
-** ONLY egl.h SHOULD INCLUDE THIS FILE!
-**
-** See comments about egltypes.h in the standard egl.h file.
-*/
-
-
-#include <sys/types.h>
-
-
-/*
-** These opaque EGL types are implemented as unsigned 32-bit integers:
-*/
-typedef uint32_t EGLDisplay;
-typedef uint32_t EGLConfig;
-typedef uint32_t EGLSurface;
-typedef uint32_t EGLContext;
-
-/* EGL_MESA_screen_surface */
-typedef uint32_t EGLModeMESA;
-typedef uint32_t EGLScreenMESA;
-
-
-/*
-** Other basic EGL types:
-*/
-typedef uint8_t EGLBoolean;
-typedef int32_t EGLint;
-
-typedef void * NativeDisplayType;
-typedef int NativePixmapType;
-typedef int NativeWindowType;
-
-/*
-** EGL and native handle null values:
-*/
-#define EGL_DEFAULT_DISPLAY ((NativeDisplayType) 0)
-#define EGL_NO_CONTEXT ((EGLContext) 0)
-#define EGL_NO_DISPLAY ((EGLDisplay) 0)
-#define EGL_NO_SURFACE ((EGLSurface) 0)
-
-/* EGL_MESA_screen_surface */
-#define EGL_NO_MODE_MESA ((EGLModeMESA) 0)