egl/dri2: Dispatch eglPostSubBufferNV by display, not driver
[mesa.git] / src / egl / drivers / dri2 / egl_dri2.h
1 /*
2 * Copyright © 2011 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
19 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
23 *
24 * Authors:
25 * Kristian Høgsberg <krh@bitplanet.net>
26 */
27
28 #ifndef EGL_DRI2_INCLUDED
29 #define EGL_DRI2_INCLUDED
30
31 #ifdef HAVE_X11_PLATFORM
32 #include <xcb/xcb.h>
33 #include <xcb/dri2.h>
34 #include <xcb/xfixes.h>
35 #include <X11/Xlib-xcb.h>
36 #endif
37
38 #ifdef HAVE_WAYLAND_PLATFORM
39 #include <wayland-client.h>
40 #include "wayland-egl-priv.h"
41 #endif
42
43 #include <GL/gl.h>
44 #include <GL/internal/dri_interface.h>
45
46 #ifdef HAVE_DRM_PLATFORM
47 #include <gbm_driint.h>
48 #endif
49
50 #ifdef HAVE_ANDROID_PLATFORM
51 #define LOG_TAG "EGL-DRI2"
52
53 #if ANDROID_VERSION >= 0x0400
54 # include <system/window.h>
55 #else
56 # define android_native_buffer_t ANativeWindowBuffer
57 # include <ui/egl/android_natives.h>
58 # include <ui/android_native_buffer.h>
59 #endif
60
61 #include <hardware/gralloc.h>
62 #include <gralloc_drm_handle.h>
63 #include <cutils/log.h>
64
65 #endif /* HAVE_ANDROID_PLATFORM */
66
67 #include "eglconfig.h"
68 #include "eglcontext.h"
69 #include "egldisplay.h"
70 #include "egldriver.h"
71 #include "eglcurrent.h"
72 #include "egllog.h"
73 #include "eglsurface.h"
74 #include "eglimage.h"
75
76 #define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
77
78 struct dri2_egl_driver
79 {
80 _EGLDriver base;
81
82 void *handle;
83 _EGLProc (*get_proc_address)(const char *procname);
84 void (*glFlush)(void);
85 };
86
87 struct dri2_egl_display_vtbl {
88 int (*authenticate)(_EGLDisplay *disp, uint32_t id);
89
90 _EGLSurface* (*create_window_surface)(_EGLDriver *drv, _EGLDisplay *dpy,
91 _EGLConfig *config,
92 EGLNativeWindowType window,
93 const EGLint *attrib_list);
94
95 _EGLSurface* (*create_pixmap_surface)(_EGLDriver *drv, _EGLDisplay *dpy,
96 _EGLConfig *config,
97 EGLNativePixmapType pixmap,
98 const EGLint *attrib_list);
99
100 _EGLSurface* (*create_pbuffer_surface)(_EGLDriver *drv, _EGLDisplay *dpy,
101 _EGLConfig *config,
102 const EGLint *attrib_list);
103
104 EGLBoolean (*destroy_surface)(_EGLDriver *drv, _EGLDisplay *dpy,
105 _EGLSurface *surface);
106
107 EGLBoolean (*swap_interval)(_EGLDriver *drv, _EGLDisplay *dpy,
108 _EGLSurface *surf, EGLint interval);
109
110 EGLBoolean (*swap_buffers)(_EGLDriver *drv, _EGLDisplay *dpy,
111 _EGLSurface *surf);
112
113 EGLBoolean (*swap_buffers_with_damage)(_EGLDriver *drv, _EGLDisplay *dpy,
114 _EGLSurface *surface,
115 const EGLint *rects, EGLint n_rects);
116
117 EGLBoolean (*swap_buffers_region)(_EGLDriver *drv, _EGLDisplay *dpy,
118 _EGLSurface *surf, EGLint numRects,
119 const EGLint *rects);
120
121 EGLBoolean (*post_sub_buffer)(_EGLDriver *drv, _EGLDisplay *dpy,
122 _EGLSurface *surf,
123 EGLint x, EGLint y,
124 EGLint width, EGLint height);
125
126 EGLBoolean (*copy_buffers)(_EGLDriver *drv, _EGLDisplay *dpy,
127 _EGLSurface *surf, EGLNativePixmapType target);
128
129 EGLint (*query_buffer_age)(_EGLDriver *drv, _EGLDisplay *dpy,
130 _EGLSurface *surf);
131 };
132
133 struct dri2_egl_display
134 {
135 const struct dri2_egl_display_vtbl *vtbl;
136
137 int dri2_major;
138 int dri2_minor;
139 __DRIscreen *dri_screen;
140 int own_dri_screen;
141 const __DRIconfig **driver_configs;
142 void *driver;
143 __DRIcoreExtension *core;
144 __DRIdri2Extension *dri2;
145 __DRIswrastExtension *swrast;
146 __DRI2flushExtension *flush;
147 __DRItexBufferExtension *tex_buffer;
148 __DRIimageExtension *image;
149 __DRIrobustnessExtension *robustness;
150 __DRI2configQueryExtension *config;
151 int fd;
152
153 int own_device;
154 int swap_available;
155 int invalidate_available;
156 int min_swap_interval;
157 int max_swap_interval;
158 int default_swap_interval;
159 #ifdef HAVE_DRM_PLATFORM
160 struct gbm_dri_device *gbm_dri;
161 #endif
162
163 char *device_name;
164 char *driver_name;
165
166 __DRIdri2LoaderExtension dri2_loader_extension;
167 __DRIswrastLoaderExtension swrast_loader_extension;
168 const __DRIextension *extensions[5];
169 const __DRIextension **driver_extensions;
170
171 #ifdef HAVE_X11_PLATFORM
172 xcb_connection_t *conn;
173 #endif
174
175 #ifdef HAVE_WAYLAND_PLATFORM
176 struct wl_display *wl_dpy;
177 struct wl_registry *wl_registry;
178 struct wl_drm *wl_server_drm;
179 struct wl_drm *wl_drm;
180 struct wl_event_queue *wl_queue;
181 int authenticated;
182 int formats;
183 uint32_t capabilities;
184 #endif
185 };
186
187 struct dri2_egl_context
188 {
189 _EGLContext base;
190 __DRIcontext *dri_context;
191 };
192
193 #ifdef HAVE_WAYLAND_PLATFORM
194 enum wayland_buffer_type {
195 WL_BUFFER_FRONT,
196 WL_BUFFER_BACK,
197 WL_BUFFER_THIRD,
198 WL_BUFFER_COUNT
199 };
200 #endif
201
202 struct dri2_egl_surface
203 {
204 _EGLSurface base;
205 __DRIdrawable *dri_drawable;
206 __DRIbuffer buffers[5];
207 int buffer_count;
208 int have_fake_front;
209
210 #ifdef HAVE_X11_PLATFORM
211 xcb_drawable_t drawable;
212 xcb_xfixes_region_t region;
213 int depth;
214 int bytes_per_pixel;
215 xcb_gcontext_t gc;
216 xcb_gcontext_t swapgc;
217 #endif
218
219 #ifdef HAVE_WAYLAND_PLATFORM
220 struct wl_egl_window *wl_win;
221 int dx;
222 int dy;
223 struct wl_callback *throttle_callback;
224 int format;
225 #endif
226
227 #ifdef HAVE_DRM_PLATFORM
228 struct gbm_dri_surface *gbm_surf;
229 #endif
230
231 #if defined(HAVE_WAYLAND_PLATFORM) || defined(HAVE_DRM_PLATFORM)
232 __DRIbuffer *dri_buffers[__DRI_BUFFER_COUNT];
233 struct {
234 #ifdef HAVE_WAYLAND_PLATFORM
235 struct wl_buffer *wl_buffer;
236 __DRIimage *dri_image;
237 #endif
238 #ifdef HAVE_DRM_PLATFORM
239 struct gbm_bo *bo;
240 #endif
241 int locked;
242 int age;
243 } color_buffers[4], *back, *current;
244 #endif
245
246 #ifdef HAVE_ANDROID_PLATFORM
247 struct ANativeWindow *window;
248 struct ANativeWindowBuffer *buffer;
249
250 /* EGL-owned buffers */
251 __DRIbuffer *local_buffers[__DRI_BUFFER_COUNT];
252 #endif
253 };
254
255
256 struct dri2_egl_config
257 {
258 _EGLConfig base;
259 const __DRIconfig *dri_single_config;
260 const __DRIconfig *dri_double_config;
261 };
262
263 struct dri2_egl_image
264 {
265 _EGLImage base;
266 __DRIimage *dri_image;
267 };
268
269 /* From xmlpool/options.h, user exposed so should be stable */
270 #define DRI_CONF_VBLANK_NEVER 0
271 #define DRI_CONF_VBLANK_DEF_INTERVAL_0 1
272 #define DRI_CONF_VBLANK_DEF_INTERVAL_1 2
273 #define DRI_CONF_VBLANK_ALWAYS_SYNC 3
274
275 /* standard typecasts */
276 _EGL_DRIVER_STANDARD_TYPECASTS(dri2_egl)
277 _EGL_DRIVER_TYPECAST(dri2_egl_image, _EGLImage, obj)
278
279 extern const __DRIimageLookupExtension image_lookup_extension;
280 extern const __DRIuseInvalidateExtension use_invalidate;
281
282 EGLBoolean
283 dri2_load_driver(_EGLDisplay *disp);
284
285 /* Helper for platforms not using dri2_create_screen */
286 void
287 dri2_setup_screen(_EGLDisplay *disp);
288
289 EGLBoolean
290 dri2_load_driver_swrast(_EGLDisplay *disp);
291
292 EGLBoolean
293 dri2_create_screen(_EGLDisplay *disp);
294
295 __DRIimage *
296 dri2_lookup_egl_image(__DRIscreen *screen, void *image, void *data);
297
298 struct dri2_egl_config *
299 dri2_add_config(_EGLDisplay *disp, const __DRIconfig *dri_config, int id,
300 EGLint surface_type, const EGLint *attr_list,
301 const unsigned int *rgba_masks);
302
303 _EGLImage *
304 dri2_create_image_khr(_EGLDriver *drv, _EGLDisplay *disp,
305 _EGLContext *ctx, EGLenum target,
306 EGLClientBuffer buffer, const EGLint *attr_list);
307
308 EGLBoolean
309 dri2_initialize_x11(_EGLDriver *drv, _EGLDisplay *disp);
310
311 EGLBoolean
312 dri2_initialize_drm(_EGLDriver *drv, _EGLDisplay *disp);
313
314 EGLBoolean
315 dri2_initialize_wayland(_EGLDriver *drv, _EGLDisplay *disp);
316
317 EGLBoolean
318 dri2_initialize_android(_EGLDriver *drv, _EGLDisplay *disp);
319
320 #endif /* EGL_DRI2_INCLUDED */