revert between 56095 -> 55830 in arch
[AROS.git] / workbench / libs / mesa / src / egl / main / egldisplay.h
blob27023787bd52c69dab911bd2188c6d69c0a7aa51
1 /**************************************************************************
3 * Copyright 2008 Tungsten Graphics, Inc., Cedar Park, Texas.
4 * Copyright 2009-2010 Chia-I Wu <olvaffe@gmail.com>
5 * Copyright 2010-2011 LunarG, Inc.
6 * All Rights Reserved.
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:
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.
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.
28 **************************************************************************/
31 #ifndef EGLDISPLAY_INCLUDED
32 #define EGLDISPLAY_INCLUDED
35 #include "egltypedefs.h"
36 #include "egldefines.h"
37 #include "eglmutex.h"
38 #include "eglarray.h"
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_AROS,
49 _EGL_NUM_PLATFORMS,
50 _EGL_INVALID_PLATFORM = -1
52 typedef enum _egl_platform_type _EGLPlatformType;
55 enum _egl_resource_type {
56 _EGL_RESOURCE_CONTEXT,
57 _EGL_RESOURCE_SURFACE,
58 _EGL_RESOURCE_IMAGE,
59 _EGL_RESOURCE_SYNC,
61 _EGL_NUM_RESOURCES
63 /* this cannot and need not go into egltypedefs.h */
64 typedef enum _egl_resource_type _EGLResourceType;
67 /**
68 * A resource of a display.
70 struct _egl_resource
72 /* which display the resource belongs to */
73 _EGLDisplay *Display;
74 EGLBoolean IsLinked;
75 EGLint RefCount;
77 /* used to link resources of the same type */
78 _EGLResource *Next;
82 /**
83 * Optional EGL extensions info.
85 struct _egl_extensions
87 EGLBoolean MESA_screen_surface;
88 EGLBoolean MESA_copy_context;
89 EGLBoolean MESA_drm_display;
90 EGLBoolean MESA_drm_image;
92 EGLBoolean WL_bind_wayland_display;
94 EGLBoolean KHR_image_base;
95 EGLBoolean KHR_image_pixmap;
96 EGLBoolean KHR_vg_parent_image;
97 EGLBoolean KHR_gl_texture_2D_image;
98 EGLBoolean KHR_gl_texture_cubemap_image;
99 EGLBoolean KHR_gl_texture_3D_image;
100 EGLBoolean KHR_gl_renderbuffer_image;
102 EGLBoolean KHR_reusable_sync;
103 EGLBoolean KHR_fence_sync;
105 EGLBoolean KHR_surfaceless_gles1;
106 EGLBoolean KHR_surfaceless_gles2;
107 EGLBoolean KHR_surfaceless_opengl;
109 EGLBoolean NOK_swap_region;
110 EGLBoolean NOK_texture_from_pixmap;
114 struct _egl_display
116 /* used to link displays */
117 _EGLDisplay *Next;
119 _EGLMutex Mutex;
121 _EGLPlatformType Platform; /**< The type of the platform display */
122 void *PlatformDisplay; /**< A pointer to the platform display */
124 _EGLDriver *Driver; /**< Matched driver of the display */
125 EGLBoolean Initialized; /**< True if the display is initialized */
127 /* options that affect how the driver initializes the display */
128 struct {
129 EGLBoolean TestOnly; /**< Driver should not set fields when true */
130 EGLBoolean UseFallback; /**< Use fallback driver (sw or less features) */
131 } Options;
133 /* these fields are set by the driver during init */
134 void *DriverData; /**< Driver private data */
135 EGLint VersionMajor; /**< EGL major version */
136 EGLint VersionMinor; /**< EGL minor version */
137 EGLint ClientAPIs; /**< Bitmask of APIs supported (EGL_xxx_BIT) */
138 _EGLExtensions Extensions; /**< Extensions supported */
140 /* these fields are derived from above */
141 char VersionString[1000]; /**< EGL_VERSION */
142 char ClientAPIsString[1000]; /**< EGL_CLIENT_APIS */
143 char ExtensionsString[_EGL_MAX_EXTENSIONS_LEN]; /**< EGL_EXTENSIONS */
145 _EGLArray *Screens;
146 _EGLArray *Configs;
148 /* lists of resources */
149 _EGLResource *ResourceLists[_EGL_NUM_RESOURCES];
153 extern _EGLPlatformType
154 _eglGetNativePlatform(void);
157 extern void
158 _eglFiniDisplay(void);
161 extern _EGLDisplay *
162 _eglFindDisplay(_EGLPlatformType plat, void *plat_dpy);
165 PUBLIC void
166 _eglReleaseDisplayResources(_EGLDriver *drv, _EGLDisplay *dpy);
169 PUBLIC void
170 _eglCleanupDisplay(_EGLDisplay *disp);
173 extern EGLBoolean
174 _eglCheckDisplayHandle(EGLDisplay dpy);
177 PUBLIC EGLBoolean
178 _eglCheckResource(void *res, _EGLResourceType type, _EGLDisplay *dpy);
182 * Lookup a handle to find the linked display.
183 * Return NULL if the handle has no corresponding linked display.
185 static INLINE _EGLDisplay *
186 _eglLookupDisplay(EGLDisplay display)
188 _EGLDisplay *dpy = (_EGLDisplay *) display;
189 if (!_eglCheckDisplayHandle(display))
190 dpy = NULL;
191 return dpy;
196 * Return the handle of a linked display, or EGL_NO_DISPLAY.
198 static INLINE EGLDisplay
199 _eglGetDisplayHandle(_EGLDisplay *dpy)
201 return (EGLDisplay) ((dpy) ? dpy : EGL_NO_DISPLAY);
205 extern void
206 _eglInitResource(_EGLResource *res, EGLint size, _EGLDisplay *dpy);
209 PUBLIC void
210 _eglGetResource(_EGLResource *res);
213 PUBLIC EGLBoolean
214 _eglPutResource(_EGLResource *res);
217 extern void
218 _eglLinkResource(_EGLResource *res, _EGLResourceType type);
221 extern void
222 _eglUnlinkResource(_EGLResource *res, _EGLResourceType type);
226 * Return true if the resource is linked.
228 static INLINE EGLBoolean
229 _eglIsResourceLinked(_EGLResource *res)
231 return res->IsLinked;
235 #endif /* EGLDISPLAY_INCLUDED */