1 #ifndef __eglplatform_h_
2 #define __eglplatform_h_
5 ** Copyright (c) 2007-2013 The Khronos Group Inc.
7 ** Permission is hereby granted, free of charge, to any person obtaining a
8 ** copy of this software and/or associated documentation files (the
9 ** "Materials"), to deal in the Materials without restriction, including
10 ** without limitation the rights to use, copy, modify, merge, publish,
11 ** distribute, sublicense, and/or sell copies of the Materials, and to
12 ** permit persons to whom the Materials are furnished to do so, subject to
13 ** the following conditions:
15 ** The above copyright notice and this permission notice shall be included
16 ** in all copies or substantial portions of the Materials.
18 ** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19 ** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 ** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
21 ** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
22 ** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 ** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 ** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.
27 /* Platform-specific types and definitions for egl.h
28 * $Revision: 30994 $ on $Date: 2015-04-30 13:36:48 -0700 (Thu, 30 Apr 2015) $
30 * Adopters may modify khrplatform.h and this file to suit their platform.
31 * You are encouraged to submit all modifications to the Khronos group so that
32 * they can be included in future versions of this file. Please submit changes
33 * by sending them to the public Khronos Bugzilla (http://khronos.org/bugzilla)
34 * by filing a bug against product "EGL" component "Registry".
37 #include <KHR/khrplatform.h>
39 /* Macros used in EGL function prototype declarations.
41 * EGL functions should be prototyped as:
43 * EGLAPI return-type EGLAPIENTRY eglFunction(arguments);
44 * typedef return-type (EXPAPIENTRYP PFNEGLFUNCTIONPROC) (arguments);
46 * KHRONOS_APICALL and KHRONOS_APIENTRY are defined in KHR/khrplatform.h
50 #define EGLAPI KHRONOS_APICALL
54 #define EGLAPIENTRY KHRONOS_APIENTRY
56 #define EGLAPIENTRYP EGLAPIENTRY*
58 /* The types NativeDisplayType, NativeWindowType, and NativePixmapType
59 * are aliases of window-system-dependent types, such as X Display * or
60 * Windows Device Context. They must be defined in platform-specific
61 * code below. The EGL-prefixed versions of Native*Type are the same
62 * types, renamed in EGL 1.3 so all types in the API start with "EGL".
64 * Khronos STRONGLY RECOMMENDS that you use the default definitions
65 * provided below, since these changes affect both binary and source
66 * portability of applications using EGL running on different EGL
70 #if defined(_WIN32) || defined(__VC32__) && !defined(__CYGWIN__) && !defined(__SCITECH_SNAP__) /* Win32 and WinCE */
71 #ifndef WIN32_LEAN_AND_MEAN
72 #define WIN32_LEAN_AND_MEAN 1
76 typedef HDC EGLNativeDisplayType
;
77 typedef HBITMAP EGLNativePixmapType
;
78 typedef HWND EGLNativeWindowType
;
80 #elif defined(__WINSCW__) || defined(__SYMBIAN32__) /* Symbian */
82 typedef int EGLNativeDisplayType
;
83 typedef void *EGLNativeWindowType
;
84 typedef void *EGLNativePixmapType
;
86 #elif defined(WL_EGL_PLATFORM)
88 typedef struct wl_display
*EGLNativeDisplayType
;
89 typedef struct wl_egl_pixmap
*EGLNativePixmapType
;
90 typedef struct wl_egl_window
*EGLNativeWindowType
;
92 #elif defined(__GBM__)
94 typedef struct gbm_device
*EGLNativeDisplayType
;
95 typedef struct gbm_bo
*EGLNativePixmapType
;
96 typedef void *EGLNativeWindowType
;
98 #elif defined(__ANDROID__) || defined(ANDROID)
100 #include <android/native_window.h>
102 struct egl_native_pixmap_t
;
104 typedef struct ANativeWindow
* EGLNativeWindowType
;
105 typedef struct egl_native_pixmap_t
* EGLNativePixmapType
;
106 typedef void* EGLNativeDisplayType
;
108 #elif defined(__unix__) || defined(__APPLE__)
110 #if defined(MESA_EGL_NO_X11_HEADERS)
112 typedef void *EGLNativeDisplayType
;
113 typedef khronos_uintptr_t EGLNativePixmapType
;
114 typedef khronos_uintptr_t EGLNativeWindowType
;
118 /* X11 (tentative) */
119 #include <X11/Xlib.h>
120 #include <X11/Xutil.h>
122 typedef Display
*EGLNativeDisplayType
;
123 typedef Pixmap EGLNativePixmapType
;
124 typedef Window EGLNativeWindowType
;
126 #endif /* MESA_EGL_NO_X11_HEADERS */
129 #include <kernel/image.h>
130 typedef void *EGLNativeDisplayType
;
131 typedef khronos_uintptr_t EGLNativePixmapType
;
132 typedef khronos_uintptr_t EGLNativeWindowType
;
135 #error "Platform not recognized"
138 /* EGL 1.2 types, renamed for consistency in EGL 1.3 */
139 typedef EGLNativeDisplayType NativeDisplayType
;
140 typedef EGLNativePixmapType NativePixmapType
;
141 typedef EGLNativeWindowType NativeWindowType
;
144 /* Define EGLint. This must be a signed integral type large enough to contain
145 * all legal attribute names and values passed into and out of EGL, whether
146 * their type is boolean, bitmask, enumerant (symbolic constant), integer,
147 * handle, or other. While in general a 32-bit integer will suffice, if
148 * handles are 64 bit types, then EGLint should be defined as a signed 64-bit
151 typedef khronos_int32_t EGLint
;
153 #endif /* __eglplatform_h */