egl: inline fallback for swap_buffers_with_damage
[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 #include <stdbool.h>
32 #include <stdint.h>
33
34 #ifdef HAVE_X11_PLATFORM
35 #include <xcb/xcb.h>
36 #include <xcb/dri2.h>
37 #include <xcb/xfixes.h>
38 #include <X11/Xlib-xcb.h>
39
40 #ifdef HAVE_DRI3
41 #include "loader_dri3_helper.h"
42 #endif
43 #endif
44
45 #ifdef HAVE_WAYLAND_PLATFORM
46 /* forward declarations to avoid pulling wayland headers everywhere */
47 struct wl_egl_window;
48 struct wl_event_queue;
49 struct wl_callback;
50 struct wl_display;
51 struct wl_drm;
52 struct wl_registry;
53 struct wl_shm;
54 struct wl_surface;
55 struct zwp_linux_dmabuf_v1;
56 #endif
57
58 #include <GL/gl.h>
59 #include <GL/internal/dri_interface.h>
60
61 #ifdef HAVE_DRM_PLATFORM
62 #include <gbm_driint.h>
63 #endif
64
65 #ifdef HAVE_ANDROID_PLATFORM
66 #define LOG_TAG "EGL-DRI2"
67
68 #include <system/window.h>
69 #include <hardware/gralloc.h>
70 #endif /* HAVE_ANDROID_PLATFORM */
71
72 #include "eglconfig.h"
73 #include "eglcontext.h"
74 #include "egldevice.h"
75 #include "egldisplay.h"
76 #include "egldriver.h"
77 #include "eglcurrent.h"
78 #include "egllog.h"
79 #include "eglsurface.h"
80 #include "eglimage.h"
81 #include "eglsync.h"
82
83 #include "util/u_vector.h"
84 #include "util/bitset.h"
85
86 #define EGL_DRI2_MAX_FORMATS 10
87
88 struct wl_buffer;
89
90 struct dri2_egl_display_vtbl {
91 int (*authenticate)(_EGLDisplay *disp, uint32_t id);
92
93 _EGLSurface* (*create_window_surface)(_EGLDriver *drv, _EGLDisplay *disp,
94 _EGLConfig *config,
95 void *native_window,
96 const EGLint *attrib_list);
97
98 /* optional */
99 _EGLSurface* (*create_pixmap_surface)(_EGLDriver *drv, _EGLDisplay *disp,
100 _EGLConfig *config,
101 void *native_pixmap,
102 const EGLint *attrib_list);
103
104 /* optional */
105 _EGLSurface* (*create_pbuffer_surface)(_EGLDriver *drv, _EGLDisplay *disp,
106 _EGLConfig *config,
107 const EGLint *attrib_list);
108
109 EGLBoolean (*destroy_surface)(_EGLDriver *drv, _EGLDisplay *disp,
110 _EGLSurface *surface);
111
112 EGLBoolean (*swap_interval)(_EGLDriver *drv, _EGLDisplay *disp,
113 _EGLSurface *surf, EGLint interval);
114
115 _EGLImage* (*create_image)(_EGLDriver *drv, _EGLDisplay *disp,
116 _EGLContext *ctx, EGLenum target,
117 EGLClientBuffer buffer,
118 const EGLint *attr_list);
119
120 EGLBoolean (*swap_buffers)(_EGLDriver *drv, _EGLDisplay *disp,
121 _EGLSurface *surf);
122
123 /* optional - falls back to .swap_buffers */
124 EGLBoolean (*swap_buffers_with_damage)(_EGLDriver *drv, _EGLDisplay *disp,
125 _EGLSurface *surface,
126 const EGLint *rects, EGLint n_rects);
127
128 EGLBoolean (*swap_buffers_region)(_EGLDriver *drv, _EGLDisplay *disp,
129 _EGLSurface *surf, EGLint numRects,
130 const EGLint *rects);
131
132 EGLBoolean (*post_sub_buffer)(_EGLDriver *drv, _EGLDisplay *disp,
133 _EGLSurface *surf,
134 EGLint x, EGLint y,
135 EGLint width, EGLint height);
136
137 EGLBoolean (*copy_buffers)(_EGLDriver *drv, _EGLDisplay *disp,
138 _EGLSurface *surf, void *native_pixmap_target);
139
140 EGLint (*query_buffer_age)(_EGLDriver *drv, _EGLDisplay *disp,
141 _EGLSurface *surf);
142
143 EGLBoolean (*query_surface)(_EGLDriver *drv, _EGLDisplay *disp,
144 _EGLSurface *surf, EGLint attribute,
145 EGLint *value);
146
147 struct wl_buffer* (*create_wayland_buffer_from_image)(
148 _EGLDriver *drv, _EGLDisplay *disp, _EGLImage *img);
149
150 EGLBoolean (*get_sync_values)(_EGLDisplay *display, _EGLSurface *surface,
151 EGLuint64KHR *ust, EGLuint64KHR *msc,
152 EGLuint64KHR *sbc);
153
154 __DRIdrawable *(*get_dri_drawable)(_EGLSurface *surf);
155
156 void (*close_screen_notify)(_EGLDisplay *disp);
157
158 /* Used in EGL_KHR_mutable_render_buffer to update the native window's
159 * shared buffer mode.
160 */
161 bool (*set_shared_buffer_mode)(_EGLDisplay *disp, _EGLSurface *surf,
162 bool mode);
163 };
164
165 struct dri2_egl_display
166 {
167 const struct dri2_egl_display_vtbl *vtbl;
168
169 int dri2_major;
170 int dri2_minor;
171 __DRIscreen *dri_screen;
172 bool own_dri_screen;
173 const __DRIconfig **driver_configs;
174 void *driver;
175 const __DRIcoreExtension *core;
176 const __DRIimageDriverExtension *image_driver;
177 const __DRIdri2Extension *dri2;
178 const __DRIswrastExtension *swrast;
179 const __DRI2flushExtension *flush;
180 const __DRI2flushControlExtension *flush_control;
181 const __DRItexBufferExtension *tex_buffer;
182 const __DRIimageExtension *image;
183 const __DRIrobustnessExtension *robustness;
184 const __DRInoErrorExtension *no_error;
185 const __DRI2configQueryExtension *config;
186 const __DRI2fenceExtension *fence;
187 const __DRI2bufferDamageExtension *buffer_damage;
188 const __DRI2blobExtension *blob;
189 const __DRI2rendererQueryExtension *rendererQuery;
190 const __DRI2interopExtension *interop;
191 const __DRIconfigOptionsExtension *configOptions;
192 const __DRImutableRenderBufferDriverExtension *mutable_render_buffer;
193 int fd;
194
195 /* dri2_initialize/dri2_terminate increment/decrement this count, so does
196 * dri2_make_current (tracks if there are active contexts/surfaces). */
197 int ref_count;
198
199 bool own_device;
200 bool invalidate_available;
201 int min_swap_interval;
202 int max_swap_interval;
203 int default_swap_interval;
204 #ifdef HAVE_DRM_PLATFORM
205 struct gbm_dri_device *gbm_dri;
206 #endif
207
208 char *driver_name;
209
210 const __DRIextension **loader_extensions;
211 const __DRIextension **driver_extensions;
212
213 #ifdef HAVE_X11_PLATFORM
214 xcb_connection_t *conn;
215 xcb_screen_t *screen;
216 bool swap_available;
217 #ifdef HAVE_DRI3
218 bool multibuffers_available;
219 int dri3_major_version;
220 int dri3_minor_version;
221 int present_major_version;
222 int present_minor_version;
223 struct loader_dri3_extensions loader_dri3_ext;
224 #endif
225 #endif
226
227 #ifdef HAVE_WAYLAND_PLATFORM
228 struct wl_display *wl_dpy;
229 struct wl_display *wl_dpy_wrapper;
230 struct wl_registry *wl_registry;
231 struct wl_drm *wl_server_drm;
232 struct wl_drm *wl_drm;
233 struct wl_shm *wl_shm;
234 struct wl_event_queue *wl_queue;
235 struct zwp_linux_dmabuf_v1 *wl_dmabuf;
236 struct u_vector *wl_modifiers;
237 bool authenticated;
238 BITSET_DECLARE(formats, EGL_DRI2_MAX_FORMATS);
239 uint32_t capabilities;
240 char *device_name;
241 #endif
242
243 #ifdef HAVE_ANDROID_PLATFORM
244 const gralloc_module_t *gralloc;
245 #endif
246
247 bool is_render_node;
248 bool is_different_gpu;
249 };
250
251 struct dri2_egl_context
252 {
253 _EGLContext base;
254 __DRIcontext *dri_context;
255 };
256
257 #ifdef HAVE_WAYLAND_PLATFORM
258 enum wayland_buffer_type {
259 WL_BUFFER_FRONT,
260 WL_BUFFER_BACK,
261 WL_BUFFER_THIRD,
262 WL_BUFFER_COUNT
263 };
264 #endif
265
266 struct dri2_egl_surface
267 {
268 _EGLSurface base;
269 __DRIdrawable *dri_drawable;
270 __DRIbuffer buffers[5];
271 bool have_fake_front;
272
273 #ifdef HAVE_X11_PLATFORM
274 xcb_drawable_t drawable;
275 xcb_xfixes_region_t region;
276 int depth;
277 int bytes_per_pixel;
278 xcb_gcontext_t gc;
279 xcb_gcontext_t swapgc;
280 #endif
281
282 #ifdef HAVE_WAYLAND_PLATFORM
283 struct wl_egl_window *wl_win;
284 int dx;
285 int dy;
286 struct wl_event_queue *wl_queue;
287 struct wl_surface *wl_surface_wrapper;
288 struct wl_display *wl_dpy_wrapper;
289 struct wl_drm *wl_drm_wrapper;
290 struct wl_callback *throttle_callback;
291 int format;
292 #endif
293
294 #ifdef HAVE_DRM_PLATFORM
295 struct gbm_dri_surface *gbm_surf;
296 #endif
297
298 /* EGL-owned buffers */
299 __DRIbuffer *local_buffers[__DRI_BUFFER_COUNT];
300
301 #if defined(HAVE_WAYLAND_PLATFORM) || defined(HAVE_DRM_PLATFORM)
302 struct {
303 #ifdef HAVE_WAYLAND_PLATFORM
304 struct wl_buffer *wl_buffer;
305 bool wl_release;
306 __DRIimage *dri_image;
307 /* for is_different_gpu case. NULL else */
308 __DRIimage *linear_copy;
309 /* for swrast */
310 void *data;
311 int data_size;
312 #endif
313 #ifdef HAVE_DRM_PLATFORM
314 struct gbm_bo *bo;
315 #endif
316 bool locked;
317 int age;
318 } color_buffers[4], *back, *current;
319 #endif
320
321 #ifdef HAVE_ANDROID_PLATFORM
322 struct ANativeWindow *window;
323 struct ANativeWindowBuffer *buffer;
324 __DRIimage *dri_image_back;
325 __DRIimage *dri_image_front;
326
327 /* Used to record all the buffers created by ANativeWindow and their ages.
328 * Allocate number of color_buffers based on query to android bufferqueue
329 * and save color_buffers_count.
330 */
331 int color_buffers_count;
332 struct {
333 struct ANativeWindowBuffer *buffer;
334 int age;
335 } *color_buffers, *back;
336 #endif
337
338 /* surfaceless and device */
339 __DRIimage *front;
340 unsigned int visual;
341
342 int out_fence_fd;
343 EGLBoolean enable_out_fence;
344
345 /* swrast device */
346 char *swrast_device_buffer;
347 };
348
349 struct dri2_egl_config
350 {
351 _EGLConfig base;
352 const __DRIconfig *dri_config[2][2];
353 };
354
355 struct dri2_egl_image
356 {
357 _EGLImage base;
358 __DRIimage *dri_image;
359 };
360
361 struct dri2_egl_sync {
362 _EGLSync base;
363 mtx_t mutex;
364 cnd_t cond;
365 int refcount;
366 void *fence;
367 };
368
369 /* From driconf.h, user exposed so should be stable */
370 #define DRI_CONF_VBLANK_NEVER 0
371 #define DRI_CONF_VBLANK_DEF_INTERVAL_0 1
372 #define DRI_CONF_VBLANK_DEF_INTERVAL_1 2
373 #define DRI_CONF_VBLANK_ALWAYS_SYNC 3
374
375 /* standard typecasts */
376 _EGL_DRIVER_STANDARD_TYPECASTS(dri2_egl)
377 _EGL_DRIVER_TYPECAST(dri2_egl_image, _EGLImage, obj)
378 _EGL_DRIVER_TYPECAST(dri2_egl_sync, _EGLSync, obj)
379
380 extern const __DRIimageLookupExtension image_lookup_extension;
381 extern const __DRIuseInvalidateExtension use_invalidate;
382 extern const __DRIbackgroundCallableExtension background_callable_extension;
383 extern const __DRIswrastLoaderExtension swrast_pbuffer_loader_extension;
384
385 EGLBoolean
386 dri2_load_driver(_EGLDisplay *disp);
387
388 /* Helper for platforms not using dri2_create_screen */
389 void
390 dri2_setup_screen(_EGLDisplay *disp);
391
392 void
393 dri2_setup_swap_interval(_EGLDisplay *disp, int max_swap_interval);
394
395 EGLBoolean
396 dri2_load_driver_swrast(_EGLDisplay *disp);
397
398 EGLBoolean
399 dri2_load_driver_dri3(_EGLDisplay *disp);
400
401 EGLBoolean
402 dri2_create_screen(_EGLDisplay *disp);
403
404 EGLBoolean
405 dri2_setup_extensions(_EGLDisplay *disp);
406
407 __DRIdrawable *
408 dri2_surface_get_dri_drawable(_EGLSurface *surf);
409
410 __DRIimage *
411 dri2_lookup_egl_image(__DRIscreen *screen, void *image, void *data);
412
413 void
414 dri2_get_shifts_and_sizes(const __DRIcoreExtension *core,
415 const __DRIconfig *config, int *shifts,
416 unsigned int *sizes);
417
418 void
419 dri2_get_render_type_float(const __DRIcoreExtension *core,
420 const __DRIconfig *config,
421 bool *is_float);
422
423 unsigned int
424 dri2_image_format_for_pbuffer_config(struct dri2_egl_display *dri2_dpy,
425 const __DRIconfig *config);
426
427 struct dri2_egl_config *
428 dri2_add_config(_EGLDisplay *disp, const __DRIconfig *dri_config, int id,
429 EGLint surface_type, const EGLint *attr_list,
430 const int *rgba_shifts, const unsigned int *rgba_sizes);
431
432 EGLBoolean
433 dri2_add_pbuffer_configs_for_visuals(_EGLDriver *drv, _EGLDisplay *disp);
434
435 _EGLImage *
436 dri2_create_image_khr(_EGLDriver *drv, _EGLDisplay *disp,
437 _EGLContext *ctx, EGLenum target,
438 EGLClientBuffer buffer, const EGLint *attr_list);
439
440 _EGLImage *
441 dri2_create_image_dma_buf(_EGLDisplay *disp, _EGLContext *ctx,
442 EGLClientBuffer buffer, const EGLint *attr_list);
443
444 #ifdef HAVE_X11_PLATFORM
445 EGLBoolean
446 dri2_initialize_x11(_EGLDriver *drv, _EGLDisplay *disp);
447 void
448 dri2_teardown_x11(struct dri2_egl_display *dri2_dpy);
449 unsigned int
450 dri2_x11_get_red_mask_for_depth(struct dri2_egl_display *dri2_dpy, int depth);
451 #else
452 static inline EGLBoolean
453 dri2_initialize_x11(_EGLDriver *drv, _EGLDisplay *disp)
454 {
455 return _eglError(EGL_NOT_INITIALIZED, "X11 platform not built");
456 }
457 static inline void
458 dri2_teardown_x11(struct dri2_egl_display *dri2_dpy) {}
459 static inline unsigned int
460 dri2_x11_get_red_mask_for_depth(struct dri2_egl_display *dri2_dpy, int depth)
461 {
462 return 0;
463 }
464 #endif
465
466 #ifdef HAVE_DRM_PLATFORM
467 EGLBoolean
468 dri2_initialize_drm(_EGLDriver *drv, _EGLDisplay *disp);
469 void
470 dri2_teardown_drm(struct dri2_egl_display *dri2_dpy);
471 #else
472 static inline EGLBoolean
473 dri2_initialize_drm(_EGLDriver *drv, _EGLDisplay *disp)
474 {
475 return _eglError(EGL_NOT_INITIALIZED, "GBM/DRM platform not built");
476 }
477 static inline void
478 dri2_teardown_drm(struct dri2_egl_display *dri2_dpy) {}
479 #endif
480
481 #ifdef HAVE_WAYLAND_PLATFORM
482 EGLBoolean
483 dri2_initialize_wayland(_EGLDriver *drv, _EGLDisplay *disp);
484 void
485 dri2_teardown_wayland(struct dri2_egl_display *dri2_dpy);
486 bool
487 dri2_wl_is_format_supported(void* user_data, uint32_t format);
488 #else
489 static inline EGLBoolean
490 dri2_initialize_wayland(_EGLDriver *drv, _EGLDisplay *disp)
491 {
492 return _eglError(EGL_NOT_INITIALIZED, "Wayland platform not built");
493 }
494 static inline void
495 dri2_teardown_wayland(struct dri2_egl_display *dri2_dpy) {}
496 #endif
497
498 #ifdef HAVE_ANDROID_PLATFORM
499 EGLBoolean
500 dri2_initialize_android(_EGLDriver *drv, _EGLDisplay *disp);
501 #else
502 static inline EGLBoolean
503 dri2_initialize_android(_EGLDriver *drv, _EGLDisplay *disp)
504 {
505 return _eglError(EGL_NOT_INITIALIZED, "Android platform not built");
506 }
507 #endif
508
509 EGLBoolean
510 dri2_initialize_surfaceless(_EGLDriver *drv, _EGLDisplay *disp);
511
512 EGLBoolean
513 dri2_initialize_device(_EGLDriver *drv, _EGLDisplay *disp);
514 static inline void
515 dri2_teardown_device(struct dri2_egl_display *dri2_dpy) { /* noop */ }
516
517 void
518 dri2_flush_drawable_for_swapbuffers(_EGLDisplay *disp, _EGLSurface *draw);
519
520 const __DRIconfig *
521 dri2_get_dri_config(struct dri2_egl_config *conf, EGLint surface_type,
522 EGLenum colorspace);
523
524 static inline void
525 dri2_set_WL_bind_wayland_display(_EGLDriver *drv, _EGLDisplay *disp)
526 {
527 #ifdef HAVE_WAYLAND_PLATFORM
528 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
529
530 (void) drv;
531
532 if (dri2_dpy->device_name && dri2_dpy->image) {
533 if (dri2_dpy->image->base.version >= 10 &&
534 dri2_dpy->image->getCapabilities != NULL) {
535 int capabilities;
536
537 capabilities =
538 dri2_dpy->image->getCapabilities(dri2_dpy->dri_screen);
539 disp->Extensions.WL_bind_wayland_display =
540 (capabilities & __DRI_IMAGE_CAP_GLOBAL_NAMES) != 0;
541 } else {
542 disp->Extensions.WL_bind_wayland_display = EGL_TRUE;
543 }
544 }
545 #endif
546 }
547
548 void
549 dri2_display_destroy(_EGLDisplay *disp);
550
551 __DRIbuffer *
552 dri2_egl_surface_alloc_local_buffer(struct dri2_egl_surface *dri2_surf,
553 unsigned int att, unsigned int format);
554
555 void
556 dri2_egl_surface_free_local_buffers(struct dri2_egl_surface *dri2_surf);
557
558 EGLBoolean
559 dri2_init_surface(_EGLSurface *surf, _EGLDisplay *disp, EGLint type,
560 _EGLConfig *conf, const EGLint *attrib_list,
561 EGLBoolean enable_out_fence, void *native_surface);
562
563 void
564 dri2_fini_surface(_EGLSurface *surf);
565
566 EGLBoolean
567 dri2_create_drawable(struct dri2_egl_display *dri2_dpy,
568 const __DRIconfig *config,
569 struct dri2_egl_surface *dri2_surf,
570 void *loaderPrivate);
571
572 static inline uint64_t
573 combine_u32_into_u64(uint32_t hi, uint32_t lo)
574 {
575 return (((uint64_t) hi) << 32) | (((uint64_t) lo) & 0xffffffff);
576 }
577
578 #endif /* EGL_DRI2_INCLUDED */