mesa/src/egl/main/egltypedefs.h

35 lines
660 B
C
Raw Normal View History

2005-04-22 22:09:39 +01:00
#ifndef EGLTYPEDEFS_INCLUDED
#define EGLTYPEDEFS_INCLUDED
#define EGL_EGLEXT_PROTOTYPES
2005-04-22 22:09:39 +01:00
2005-04-29 23:25:21 +01:00
#include <GLES/egl.h>
#include <GLES/eglext.h>
2005-04-22 22:09:39 +01:00
typedef struct _egl_api _EGLAPI;
2005-04-22 22:09:39 +01:00
typedef struct _egl_config _EGLConfig;
typedef struct _egl_context _EGLContext;
typedef struct _egl_display _EGLDisplay;
typedef struct _egl_driver _EGLDriver;
2005-11-29 04:44:33 +00:00
typedef struct _egl_extensions _EGLExtensions;
2005-04-22 22:09:39 +01:00
typedef struct _egl_mode _EGLMode;
typedef struct _egl_screen _EGLScreen;
typedef struct _egl_surface _EGLSurface;
typedef struct _egl_thread_info _EGLThreadInfo;
2005-04-22 22:09:39 +01:00
2008-05-28 19:56:36 +01:00
typedef _EGLDriver *(*_EGLMain_t)(_EGLDisplay *dpy, const char *args);
2005-04-22 22:09:39 +01:00
#endif /* EGLTYPEDEFS_INCLUDED */