Home | History | Annotate | Download | only in main
      1 /**************************************************************************
      2  *
      3  * Copyright 2008 VMware, Inc.
      4  * Copyright 2009-2010 Chia-I Wu <olvaffe (at) gmail.com>
      5  * Copyright 2010 LunarG, Inc.
      6  * All Rights Reserved.
      7  *
      8  * Permission is hereby granted, free of charge, to any person obtaining a
      9  * copy of this software and associated documentation files (the
     10  * "Software"), to deal in the Software without restriction, including
     11  * without limitation the rights to use, copy, modify, merge, publish,
     12  * distribute, sub license, and/or sell copies of the Software, and to
     13  * permit persons to whom the Software is furnished to do so, subject to
     14  * the following conditions:
     15  *
     16  * The above copyright notice and this permission notice (including the
     17  * next paragraph) shall be included in all copies or substantial portions
     18  * of the Software.
     19  *
     20  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
     21  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
     22  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
     23  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
     24  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
     25  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
     26  * DEALINGS IN THE SOFTWARE.
     27  *
     28  **************************************************************************/
     29 
     30 
     31 #ifndef EGLTYPEDEFS_INCLUDED
     32 #define EGLTYPEDEFS_INCLUDED
     33 
     34 #include <EGL/egl.h>
     35 #include <EGL/eglext.h>
     36 
     37 #include "eglcompiler.h"
     38 
     39 
     40 #ifdef __cplusplus
     41 extern "C" {
     42 #endif
     43 
     44 typedef struct _egl_api _EGLAPI;
     45 
     46 typedef struct _egl_array _EGLArray;
     47 
     48 typedef struct _egl_config _EGLConfig;
     49 
     50 typedef struct _egl_context _EGLContext;
     51 
     52 typedef struct _egl_display _EGLDisplay;
     53 
     54 typedef struct _egl_driver _EGLDriver;
     55 
     56 typedef struct _egl_extensions _EGLExtensions;
     57 
     58 typedef struct _egl_image _EGLImage;
     59 
     60 typedef struct _egl_image_attribs _EGLImageAttribs;
     61 
     62 typedef struct _egl_mode _EGLMode;
     63 
     64 typedef struct _egl_resource _EGLResource;
     65 
     66 typedef struct _egl_screen _EGLScreen;
     67 
     68 typedef struct _egl_surface _EGLSurface;
     69 
     70 typedef struct _egl_sync _EGLSync;
     71 
     72 typedef struct _egl_thread_info _EGLThreadInfo;
     73 
     74 
     75 #ifdef __cplusplus
     76 }
     77 #endif
     78 
     79 #endif /* EGLTYPEDEFS_INCLUDED */
     80