egl: Expose EGL_KHR_get_all_proc_addresses and its client extension
[mesa.git] / src / egl / main / egldisplay.h
1 /**************************************************************************
2 *
3 * Copyright 2008 VMware, Inc.
4 * Copyright 2009-2010 Chia-I Wu <olvaffe@gmail.com>
5 * Copyright 2010-2011 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 EGLDISPLAY_INCLUDED
32 #define EGLDISPLAY_INCLUDED
33
34
35 #include "egltypedefs.h"
36 #include "egldefines.h"
37 #include "eglmutex.h"
38 #include "eglarray.h"
39
40
41 enum _egl_platform_type {
42 _EGL_PLATFORM_WINDOWS,
43 _EGL_PLATFORM_X11,
44 _EGL_PLATFORM_WAYLAND,
45 _EGL_PLATFORM_DRM,
46 _EGL_PLATFORM_FBDEV,
47 _EGL_PLATFORM_NULL,
48 _EGL_PLATFORM_ANDROID,
49
50 _EGL_NUM_PLATFORMS,
51 _EGL_INVALID_PLATFORM = -1
52 };
53 typedef enum _egl_platform_type _EGLPlatformType;
54
55
56 enum _egl_resource_type {
57 _EGL_RESOURCE_CONTEXT,
58 _EGL_RESOURCE_SURFACE,
59 _EGL_RESOURCE_IMAGE,
60 _EGL_RESOURCE_SYNC,
61
62 _EGL_NUM_RESOURCES
63 };
64 /* this cannot and need not go into egltypedefs.h */
65 typedef enum _egl_resource_type _EGLResourceType;
66
67
68 /**
69 * A resource of a display.
70 */
71 struct _egl_resource
72 {
73 /* which display the resource belongs to */
74 _EGLDisplay *Display;
75 EGLBoolean IsLinked;
76 EGLint RefCount;
77
78 /* used to link resources of the same type */
79 _EGLResource *Next;
80 };
81
82
83 /**
84 * Optional EGL extensions info.
85 */
86 struct _egl_extensions
87 {
88 EGLBoolean MESA_screen_surface;
89 EGLBoolean MESA_copy_context;
90 EGLBoolean MESA_drm_display;
91 EGLBoolean MESA_drm_image;
92 EGLBoolean MESA_configless_context;
93
94 EGLBoolean WL_bind_wayland_display;
95 EGLBoolean WL_create_wayland_buffer_from_image;
96
97 EGLBoolean KHR_image_base;
98 EGLBoolean KHR_image_pixmap;
99 EGLBoolean KHR_vg_parent_image;
100 EGLBoolean KHR_get_all_proc_addresses;
101 EGLBoolean KHR_gl_texture_2D_image;
102 EGLBoolean KHR_gl_texture_cubemap_image;
103 EGLBoolean KHR_gl_texture_3D_image;
104 EGLBoolean KHR_gl_renderbuffer_image;
105
106 EGLBoolean KHR_reusable_sync;
107 EGLBoolean KHR_fence_sync;
108
109 EGLBoolean KHR_surfaceless_context;
110 EGLBoolean KHR_create_context;
111
112 EGLBoolean NOK_swap_region;
113 EGLBoolean NOK_texture_from_pixmap;
114
115 EGLBoolean ANDROID_image_native_buffer;
116
117 EGLBoolean CHROMIUM_sync_control;
118
119 EGLBoolean NV_post_sub_buffer;
120
121 EGLBoolean EXT_create_context_robustness;
122 EGLBoolean EXT_buffer_age;
123 EGLBoolean EXT_swap_buffers_with_damage;
124 EGLBoolean EXT_image_dma_buf_import;
125 };
126
127
128 struct _egl_display
129 {
130 /* used to link displays */
131 _EGLDisplay *Next;
132
133 _EGLMutex Mutex;
134
135 _EGLPlatformType Platform; /**< The type of the platform display */
136 void *PlatformDisplay; /**< A pointer to the platform display */
137
138 _EGLDriver *Driver; /**< Matched driver of the display */
139 EGLBoolean Initialized; /**< True if the display is initialized */
140
141 /* options that affect how the driver initializes the display */
142 struct {
143 EGLBoolean TestOnly; /**< Driver should not set fields when true */
144 EGLBoolean UseFallback; /**< Use fallback driver (sw or less features) */
145 } Options;
146
147 /* these fields are set by the driver during init */
148 void *DriverData; /**< Driver private data */
149 EGLint VersionMajor; /**< EGL major version */
150 EGLint VersionMinor; /**< EGL minor version */
151 EGLint ClientAPIs; /**< Bitmask of APIs supported (EGL_xxx_BIT) */
152 _EGLExtensions Extensions; /**< Extensions supported */
153
154 /* these fields are derived from above */
155 char VersionString[1000]; /**< EGL_VERSION */
156 char ClientAPIsString[1000]; /**< EGL_CLIENT_APIS */
157 char ExtensionsString[_EGL_MAX_EXTENSIONS_LEN]; /**< EGL_EXTENSIONS */
158
159 _EGLArray *Screens;
160 _EGLArray *Configs;
161
162 /* lists of resources */
163 _EGLResource *ResourceLists[_EGL_NUM_RESOURCES];
164 };
165
166
167 extern _EGLPlatformType
168 _eglGetNativePlatform(void *nativeDisplay);
169
170
171 extern void
172 _eglFiniDisplay(void);
173
174
175 extern _EGLDisplay *
176 _eglFindDisplay(_EGLPlatformType plat, void *plat_dpy);
177
178
179 PUBLIC void
180 _eglReleaseDisplayResources(_EGLDriver *drv, _EGLDisplay *dpy);
181
182
183 PUBLIC void
184 _eglCleanupDisplay(_EGLDisplay *disp);
185
186
187 extern EGLBoolean
188 _eglCheckDisplayHandle(EGLDisplay dpy);
189
190
191 PUBLIC EGLBoolean
192 _eglCheckResource(void *res, _EGLResourceType type, _EGLDisplay *dpy);
193
194
195 /**
196 * Lookup a handle to find the linked display.
197 * Return NULL if the handle has no corresponding linked display.
198 */
199 static INLINE _EGLDisplay *
200 _eglLookupDisplay(EGLDisplay display)
201 {
202 _EGLDisplay *dpy = (_EGLDisplay *) display;
203 if (!_eglCheckDisplayHandle(display))
204 dpy = NULL;
205 return dpy;
206 }
207
208
209 /**
210 * Return the handle of a linked display, or EGL_NO_DISPLAY.
211 */
212 static INLINE EGLDisplay
213 _eglGetDisplayHandle(_EGLDisplay *dpy)
214 {
215 return (EGLDisplay) ((dpy) ? dpy : EGL_NO_DISPLAY);
216 }
217
218
219 extern void
220 _eglInitResource(_EGLResource *res, EGLint size, _EGLDisplay *dpy);
221
222
223 PUBLIC void
224 _eglGetResource(_EGLResource *res);
225
226
227 PUBLIC EGLBoolean
228 _eglPutResource(_EGLResource *res);
229
230
231 extern void
232 _eglLinkResource(_EGLResource *res, _EGLResourceType type);
233
234
235 extern void
236 _eglUnlinkResource(_EGLResource *res, _EGLResourceType type);
237
238
239 /**
240 * Return true if the resource is linked.
241 */
242 static INLINE EGLBoolean
243 _eglIsResourceLinked(_EGLResource *res)
244 {
245 return res->IsLinked;
246 }
247
248 #ifdef HAVE_X11_PLATFORM
249 _EGLDisplay*
250 _eglGetX11Display(Display *native_display, const EGLint *attrib_list);
251 #endif
252
253 #ifdef HAVE_DRM_PLATFORM
254 struct gbm_device;
255
256 _EGLDisplay*
257 _eglGetGbmDisplay(struct gbm_device *native_display,
258 const EGLint *attrib_list);
259 #endif
260
261 #ifdef HAVE_WAYLAND_PLATFORM
262 struct wl_display;
263
264 _EGLDisplay*
265 _eglGetWaylandDisplay(struct wl_display *native_display,
266 const EGLint *attrib_list);
267 #endif
268
269 #endif /* EGLDISPLAY_INCLUDED */