egl/dri: link directly to libglapi.so
[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 #include <wayland-client.h>
47 #include "wayland-egl-priv.h"
48 /* forward declarations of protocol elements */
49 struct zwp_linux_dmabuf_v1;
50 #endif
51
52 #include <GL/gl.h>
53 #include <GL/internal/dri_interface.h>
54
55 #ifdef HAVE_DRM_PLATFORM
56 #include <gbm_driint.h>
57 #endif
58
59 #ifdef HAVE_ANDROID_PLATFORM
60 #define LOG_TAG "EGL-DRI2"
61
62 #include <system/window.h>
63 #include <hardware/gralloc.h>
64 #include <gralloc_drm_handle.h>
65
66 #endif /* HAVE_ANDROID_PLATFORM */
67
68 #include "eglconfig.h"
69 #include "eglcontext.h"
70 #include "egldisplay.h"
71 #include "egldriver.h"
72 #include "eglcurrent.h"
73 #include "egllog.h"
74 #include "eglsurface.h"
75 #include "eglimage.h"
76 #include "eglsync.h"
77
78 #include "util/u_vector.h"
79
80 struct wl_buffer;
81
82 struct dri2_egl_driver
83 {
84 _EGLDriver base;
85
86 void (*glFlush)(void);
87 };
88
89 struct dri2_egl_display_vtbl {
90 int (*authenticate)(_EGLDisplay *disp, uint32_t id);
91
92 _EGLSurface* (*create_window_surface)(_EGLDriver *drv, _EGLDisplay *dpy,
93 _EGLConfig *config,
94 void *native_window,
95 const EGLint *attrib_list);
96
97 _EGLSurface* (*create_pixmap_surface)(_EGLDriver *drv, _EGLDisplay *dpy,
98 _EGLConfig *config,
99 void *native_pixmap,
100 const EGLint *attrib_list);
101
102 _EGLSurface* (*create_pbuffer_surface)(_EGLDriver *drv, _EGLDisplay *dpy,
103 _EGLConfig *config,
104 const EGLint *attrib_list);
105
106 EGLBoolean (*destroy_surface)(_EGLDriver *drv, _EGLDisplay *dpy,
107 _EGLSurface *surface);
108
109 EGLBoolean (*swap_interval)(_EGLDriver *drv, _EGLDisplay *dpy,
110 _EGLSurface *surf, EGLint interval);
111
112 _EGLImage* (*create_image)(_EGLDriver *drv, _EGLDisplay *dpy,
113 _EGLContext *ctx, EGLenum target,
114 EGLClientBuffer buffer,
115 const EGLint *attr_list);
116
117 EGLBoolean (*swap_buffers)(_EGLDriver *drv, _EGLDisplay *dpy,
118 _EGLSurface *surf);
119
120 EGLBoolean (*swap_buffers_with_damage)(_EGLDriver *drv, _EGLDisplay *dpy,
121 _EGLSurface *surface,
122 const EGLint *rects, EGLint n_rects);
123
124 EGLBoolean (*set_damage_region)(_EGLDriver *drv, _EGLDisplay *dpy,
125 _EGLSurface *surface,
126 const EGLint *rects, EGLint n_rects);
127
128 EGLBoolean (*swap_buffers_region)(_EGLDriver *drv, _EGLDisplay *dpy,
129 _EGLSurface *surf, EGLint numRects,
130 const EGLint *rects);
131
132 EGLBoolean (*post_sub_buffer)(_EGLDriver *drv, _EGLDisplay *dpy,
133 _EGLSurface *surf,
134 EGLint x, EGLint y,
135 EGLint width, EGLint height);
136
137 EGLBoolean (*copy_buffers)(_EGLDriver *drv, _EGLDisplay *dpy,
138 _EGLSurface *surf, void *native_pixmap_target);
139
140 EGLint (*query_buffer_age)(_EGLDriver *drv, _EGLDisplay *dpy,
141 _EGLSurface *surf);
142
143 EGLBoolean (*query_surface)(_EGLDriver *drv, _EGLDisplay *dpy,
144 _EGLSurface *surf, EGLint attribute,
145 EGLint *value);
146
147 struct wl_buffer* (*create_wayland_buffer_from_image)(
148 _EGLDriver *drv, _EGLDisplay *dpy, _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 *dpy);
157 };
158
159 struct dri2_egl_display
160 {
161 const struct dri2_egl_display_vtbl *vtbl;
162
163 int dri2_major;
164 int dri2_minor;
165 __DRIscreen *dri_screen;
166 bool own_dri_screen;
167 const __DRIconfig **driver_configs;
168 void *driver;
169 const __DRIcoreExtension *core;
170 const __DRIimageDriverExtension *image_driver;
171 const __DRIdri2Extension *dri2;
172 const __DRIswrastExtension *swrast;
173 const __DRI2flushExtension *flush;
174 const __DRItexBufferExtension *tex_buffer;
175 const __DRIimageExtension *image;
176 const __DRIrobustnessExtension *robustness;
177 const __DRInoErrorExtension *no_error;
178 const __DRI2configQueryExtension *config;
179 const __DRI2fenceExtension *fence;
180 const __DRI2rendererQueryExtension *rendererQuery;
181 const __DRI2interopExtension *interop;
182 int fd;
183
184 /* dri2_initialize/dri2_terminate increment/decrement this count, so does
185 * dri2_make_current (tracks if there are active contexts/surfaces). */
186 int ref_count;
187
188 bool own_device;
189 bool invalidate_available;
190 int min_swap_interval;
191 int max_swap_interval;
192 int default_swap_interval;
193 #ifdef HAVE_DRM_PLATFORM
194 struct gbm_dri_device *gbm_dri;
195 #endif
196
197 char *driver_name;
198
199 const __DRIextension **loader_extensions;
200 const __DRIextension **driver_extensions;
201
202 #ifdef HAVE_X11_PLATFORM
203 xcb_connection_t *conn;
204 xcb_screen_t *screen;
205 bool swap_available;
206 #ifdef HAVE_DRI3
207 struct loader_dri3_extensions loader_dri3_ext;
208 #endif
209 #endif
210
211 #ifdef HAVE_WAYLAND_PLATFORM
212 struct wl_display *wl_dpy;
213 struct wl_display *wl_dpy_wrapper;
214 struct wl_registry *wl_registry;
215 struct wl_drm *wl_server_drm;
216 struct wl_drm *wl_drm;
217 struct wl_shm *wl_shm;
218 struct wl_event_queue *wl_queue;
219 struct zwp_linux_dmabuf_v1 *wl_dmabuf;
220 struct {
221 struct u_vector xrgb8888;
222 struct u_vector argb8888;
223 struct u_vector rgb565;
224 } wl_modifiers;
225 bool authenticated;
226 int formats;
227 uint32_t capabilities;
228 char *device_name;
229 #endif
230
231 #ifdef HAVE_ANDROID_PLATFORM
232 const gralloc_module_t *gralloc;
233 #endif
234
235 bool is_render_node;
236 bool is_different_gpu;
237 };
238
239 struct dri2_egl_context
240 {
241 _EGLContext base;
242 __DRIcontext *dri_context;
243 };
244
245 #ifdef HAVE_WAYLAND_PLATFORM
246 enum wayland_buffer_type {
247 WL_BUFFER_FRONT,
248 WL_BUFFER_BACK,
249 WL_BUFFER_THIRD,
250 WL_BUFFER_COUNT
251 };
252 #endif
253
254 struct dri2_egl_surface
255 {
256 _EGLSurface base;
257 __DRIdrawable *dri_drawable;
258 __DRIbuffer buffers[5];
259 bool have_fake_front;
260
261 #ifdef HAVE_X11_PLATFORM
262 xcb_drawable_t drawable;
263 xcb_xfixes_region_t region;
264 int depth;
265 int bytes_per_pixel;
266 xcb_gcontext_t gc;
267 xcb_gcontext_t swapgc;
268 #endif
269
270 #ifdef HAVE_WAYLAND_PLATFORM
271 struct wl_egl_window *wl_win;
272 int dx;
273 int dy;
274 struct wl_event_queue *wl_queue;
275 struct wl_surface *wl_surface_wrapper;
276 struct wl_display *wl_dpy_wrapper;
277 struct wl_drm *wl_drm_wrapper;
278 struct wl_callback *throttle_callback;
279 int format;
280 #endif
281
282 #ifdef HAVE_DRM_PLATFORM
283 struct gbm_dri_surface *gbm_surf;
284 #endif
285
286 /* EGL-owned buffers */
287 __DRIbuffer *local_buffers[__DRI_BUFFER_COUNT];
288
289 #if defined(HAVE_WAYLAND_PLATFORM) || defined(HAVE_DRM_PLATFORM)
290 struct {
291 #ifdef HAVE_WAYLAND_PLATFORM
292 struct wl_buffer *wl_buffer;
293 __DRIimage *dri_image;
294 /* for is_different_gpu case. NULL else */
295 __DRIimage *linear_copy;
296 /* for swrast */
297 void *data;
298 int data_size;
299 #endif
300 #ifdef HAVE_DRM_PLATFORM
301 struct gbm_bo *bo;
302 #endif
303 bool locked;
304 int age;
305 } color_buffers[4], *back, *current;
306 #endif
307
308 #ifdef HAVE_ANDROID_PLATFORM
309 struct ANativeWindow *window;
310 struct ANativeWindowBuffer *buffer;
311 __DRIimage *dri_image_back;
312 __DRIimage *dri_image_front;
313
314 /* Used to record all the buffers created by ANativeWindow and their ages.
315 * Usually Android uses at most triple buffers in ANativeWindow
316 * so hardcode the number of color_buffers to 3.
317 */
318 struct {
319 struct ANativeWindowBuffer *buffer;
320 int age;
321 } color_buffers[3], *back;
322 #endif
323
324 #if defined(HAVE_SURFACELESS_PLATFORM)
325 __DRIimage *front;
326 unsigned int visual;
327 #endif
328 int out_fence_fd;
329 EGLBoolean enable_out_fence;
330 };
331
332 struct dri2_egl_config
333 {
334 _EGLConfig base;
335 const __DRIconfig *dri_config[2][2];
336 };
337
338 struct dri2_egl_image
339 {
340 _EGLImage base;
341 __DRIimage *dri_image;
342 };
343
344 struct dri2_egl_sync {
345 _EGLSync base;
346 mtx_t mutex;
347 cnd_t cond;
348 int refcount;
349 void *fence;
350 };
351
352 /* From xmlpool/options.h, user exposed so should be stable */
353 #define DRI_CONF_VBLANK_NEVER 0
354 #define DRI_CONF_VBLANK_DEF_INTERVAL_0 1
355 #define DRI_CONF_VBLANK_DEF_INTERVAL_1 2
356 #define DRI_CONF_VBLANK_ALWAYS_SYNC 3
357
358 /* standard typecasts */
359 _EGL_DRIVER_STANDARD_TYPECASTS(dri2_egl)
360 _EGL_DRIVER_TYPECAST(dri2_egl_image, _EGLImage, obj)
361 _EGL_DRIVER_TYPECAST(dri2_egl_sync, _EGLSync, obj)
362
363 extern const __DRIimageLookupExtension image_lookup_extension;
364 extern const __DRIuseInvalidateExtension use_invalidate;
365 extern const __DRIbackgroundCallableExtension background_callable_extension;
366
367 EGLBoolean
368 dri2_load_driver(_EGLDisplay *disp);
369
370 /* Helper for platforms not using dri2_create_screen */
371 void
372 dri2_setup_screen(_EGLDisplay *disp);
373
374 void
375 dri2_setup_swap_interval(_EGLDisplay *disp, int max_swap_interval);
376
377 EGLBoolean
378 dri2_load_driver_swrast(_EGLDisplay *disp);
379
380 EGLBoolean
381 dri2_load_driver_dri3(_EGLDisplay *disp);
382
383 EGLBoolean
384 dri2_create_screen(_EGLDisplay *disp);
385
386 EGLBoolean
387 dri2_setup_extensions(_EGLDisplay *disp);
388
389 __DRIdrawable *
390 dri2_surface_get_dri_drawable(_EGLSurface *surf);
391
392 __DRIimage *
393 dri2_lookup_egl_image(__DRIscreen *screen, void *image, void *data);
394
395 struct dri2_egl_config *
396 dri2_add_config(_EGLDisplay *disp, const __DRIconfig *dri_config, int id,
397 EGLint surface_type, const EGLint *attr_list,
398 const unsigned int *rgba_masks);
399
400 _EGLImage *
401 dri2_create_image_khr(_EGLDriver *drv, _EGLDisplay *disp,
402 _EGLContext *ctx, EGLenum target,
403 EGLClientBuffer buffer, const EGLint *attr_list);
404
405 _EGLImage *
406 dri2_create_image_dma_buf(_EGLDisplay *disp, _EGLContext *ctx,
407 EGLClientBuffer buffer, const EGLint *attr_list);
408
409 EGLBoolean
410 dri2_initialize_x11(_EGLDriver *drv, _EGLDisplay *disp);
411
412 EGLBoolean
413 dri2_initialize_drm(_EGLDriver *drv, _EGLDisplay *disp);
414
415 EGLBoolean
416 dri2_initialize_wayland(_EGLDriver *drv, _EGLDisplay *disp);
417
418 EGLBoolean
419 dri2_initialize_android(_EGLDriver *drv, _EGLDisplay *disp);
420
421 EGLBoolean
422 dri2_initialize_surfaceless(_EGLDriver *drv, _EGLDisplay *disp);
423
424 void
425 dri2_flush_drawable_for_swapbuffers(_EGLDisplay *disp, _EGLSurface *draw);
426
427 const __DRIconfig *
428 dri2_get_dri_config(struct dri2_egl_config *conf, EGLint surface_type,
429 EGLenum colorspace);
430
431 static inline void
432 dri2_set_WL_bind_wayland_display(_EGLDriver *drv, _EGLDisplay *disp)
433 {
434 #ifdef HAVE_WAYLAND_PLATFORM
435 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
436
437 (void) drv;
438
439 if (dri2_dpy->device_name && dri2_dpy->image) {
440 if (dri2_dpy->image->base.version >= 10 &&
441 dri2_dpy->image->getCapabilities != NULL) {
442 int capabilities;
443
444 capabilities =
445 dri2_dpy->image->getCapabilities(dri2_dpy->dri_screen);
446 disp->Extensions.WL_bind_wayland_display =
447 (capabilities & __DRI_IMAGE_CAP_GLOBAL_NAMES) != 0;
448 } else {
449 disp->Extensions.WL_bind_wayland_display = EGL_TRUE;
450 }
451 }
452 #endif
453 }
454
455 void
456 dri2_display_destroy(_EGLDisplay *disp);
457
458 __DRIbuffer *
459 dri2_egl_surface_alloc_local_buffer(struct dri2_egl_surface *dri2_surf,
460 unsigned int att, unsigned int format);
461
462 void
463 dri2_egl_surface_free_local_buffers(struct dri2_egl_surface *dri2_surf);
464
465 EGLBoolean
466 dri2_init_surface(_EGLSurface *surf, _EGLDisplay *dpy, EGLint type,
467 _EGLConfig *conf, const EGLint *attrib_list, EGLBoolean enable_out_fence);
468
469 void
470 dri2_fini_surface(_EGLSurface *surf);
471
472 #endif /* EGL_DRI2_INCLUDED */