Merge remote-tracking branch 'mesa-public/master' into vulkan
[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 <stdint.h>
32
33 #ifdef HAVE_X11_PLATFORM
34 #include <xcb/xcb.h>
35 #include <xcb/dri2.h>
36 #include <xcb/xfixes.h>
37 #include <X11/Xlib-xcb.h>
38
39 #ifdef HAVE_DRI3
40 #include "loader_dri3_helper.h"
41 #endif
42 #endif
43
44 #ifdef HAVE_WAYLAND_PLATFORM
45 #include <wayland-client.h>
46 #include "wayland-egl-priv.h"
47 #endif
48
49 #include <GL/gl.h>
50 #include <GL/internal/dri_interface.h>
51
52 #ifdef HAVE_DRM_PLATFORM
53 #include <gbm_driint.h>
54 #endif
55
56 #ifdef HAVE_ANDROID_PLATFORM
57 #define LOG_TAG "EGL-DRI2"
58
59 #if ANDROID_VERSION >= 0x0400
60 # include <system/window.h>
61 #else
62 # define android_native_buffer_t ANativeWindowBuffer
63 # include <ui/egl/android_natives.h>
64 # include <ui/android_native_buffer.h>
65 #endif
66
67 #include <hardware/gralloc.h>
68 #include <gralloc_drm_handle.h>
69 #include <cutils/log.h>
70
71 #endif /* HAVE_ANDROID_PLATFORM */
72
73 #include "eglconfig.h"
74 #include "eglcontext.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 #define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
84
85 struct wl_buffer;
86
87 struct dri2_egl_driver
88 {
89 _EGLDriver base;
90
91 void *handle;
92 _EGLProc (*get_proc_address)(const char *procname);
93 void (*glFlush)(void);
94 };
95
96 struct dri2_egl_display_vtbl {
97 int (*authenticate)(_EGLDisplay *disp, uint32_t id);
98
99 _EGLSurface* (*create_window_surface)(_EGLDriver *drv, _EGLDisplay *dpy,
100 _EGLConfig *config,
101 void *native_window,
102 const EGLint *attrib_list);
103
104 _EGLSurface* (*create_pixmap_surface)(_EGLDriver *drv, _EGLDisplay *dpy,
105 _EGLConfig *config,
106 void *native_pixmap,
107 const EGLint *attrib_list);
108
109 _EGLSurface* (*create_pbuffer_surface)(_EGLDriver *drv, _EGLDisplay *dpy,
110 _EGLConfig *config,
111 const EGLint *attrib_list);
112
113 EGLBoolean (*destroy_surface)(_EGLDriver *drv, _EGLDisplay *dpy,
114 _EGLSurface *surface);
115
116 EGLBoolean (*swap_interval)(_EGLDriver *drv, _EGLDisplay *dpy,
117 _EGLSurface *surf, EGLint interval);
118
119 _EGLImage* (*create_image)(_EGLDriver *drv, _EGLDisplay *dpy,
120 _EGLContext *ctx, EGLenum target,
121 EGLClientBuffer buffer,
122 const EGLint *attr_list);
123
124 EGLBoolean (*swap_buffers)(_EGLDriver *drv, _EGLDisplay *dpy,
125 _EGLSurface *surf);
126
127 EGLBoolean (*swap_buffers_with_damage)(_EGLDriver *drv, _EGLDisplay *dpy,
128 _EGLSurface *surface,
129 const EGLint *rects, EGLint n_rects);
130
131 EGLBoolean (*swap_buffers_region)(_EGLDriver *drv, _EGLDisplay *dpy,
132 _EGLSurface *surf, EGLint numRects,
133 const EGLint *rects);
134
135 EGLBoolean (*post_sub_buffer)(_EGLDriver *drv, _EGLDisplay *dpy,
136 _EGLSurface *surf,
137 EGLint x, EGLint y,
138 EGLint width, EGLint height);
139
140 EGLBoolean (*copy_buffers)(_EGLDriver *drv, _EGLDisplay *dpy,
141 _EGLSurface *surf, void *native_pixmap_target);
142
143 EGLint (*query_buffer_age)(_EGLDriver *drv, _EGLDisplay *dpy,
144 _EGLSurface *surf);
145
146 struct wl_buffer* (*create_wayland_buffer_from_image)(
147 _EGLDriver *drv, _EGLDisplay *dpy, _EGLImage *img);
148
149 EGLBoolean (*get_sync_values)(_EGLDisplay *display, _EGLSurface *surface,
150 EGLuint64KHR *ust, EGLuint64KHR *msc,
151 EGLuint64KHR *sbc);
152
153 __DRIdrawable *(*get_dri_drawable)(_EGLSurface *surf);
154 };
155
156 struct dri2_egl_display
157 {
158 const struct dri2_egl_display_vtbl *vtbl;
159
160 int dri2_major;
161 int dri2_minor;
162 __DRIscreen *dri_screen;
163 int own_dri_screen;
164 const __DRIconfig **driver_configs;
165 void *driver;
166 const __DRIcoreExtension *core;
167 const __DRIimageDriverExtension *image_driver;
168 const __DRIdri2Extension *dri2;
169 const __DRIswrastExtension *swrast;
170 const __DRI2flushExtension *flush;
171 const __DRItexBufferExtension *tex_buffer;
172 const __DRIimageExtension *image;
173 const __DRIrobustnessExtension *robustness;
174 const __DRI2configQueryExtension *config;
175 const __DRI2fenceExtension *fence;
176 const __DRI2rendererQueryExtension *rendererQuery;
177 int fd;
178
179 int own_device;
180 int swap_available;
181 int invalidate_available;
182 int min_swap_interval;
183 int max_swap_interval;
184 int default_swap_interval;
185 #ifdef HAVE_DRM_PLATFORM
186 struct gbm_dri_device *gbm_dri;
187 #endif
188
189 char *device_name;
190 char *driver_name;
191
192 __DRIdri2LoaderExtension dri2_loader_extension;
193 __DRIswrastLoaderExtension swrast_loader_extension;
194 const __DRIextension *extensions[5];
195 const __DRIextension **driver_extensions;
196
197 #ifdef HAVE_X11_PLATFORM
198 xcb_connection_t *conn;
199 int screen;
200 #ifdef HAVE_DRI3
201 struct loader_dri3_extensions loader_dri3_ext;
202 #endif
203 #endif
204
205 #ifdef HAVE_WAYLAND_PLATFORM
206 struct wl_display *wl_dpy;
207 struct wl_registry *wl_registry;
208 struct wl_drm *wl_server_drm;
209 struct wl_drm *wl_drm;
210 struct wl_shm *wl_shm;
211 struct wl_event_queue *wl_queue;
212 int authenticated;
213 int formats;
214 uint32_t capabilities;
215 int is_render_node;
216 #endif
217
218 int is_different_gpu;
219 };
220
221 struct dri2_egl_context
222 {
223 _EGLContext base;
224 __DRIcontext *dri_context;
225 };
226
227 #ifdef HAVE_WAYLAND_PLATFORM
228 enum wayland_buffer_type {
229 WL_BUFFER_FRONT,
230 WL_BUFFER_BACK,
231 WL_BUFFER_THIRD,
232 WL_BUFFER_COUNT
233 };
234 #endif
235
236 struct dri2_egl_surface
237 {
238 _EGLSurface base;
239 __DRIdrawable *dri_drawable;
240 __DRIbuffer buffers[5];
241 int buffer_count;
242 int have_fake_front;
243
244 #ifdef HAVE_X11_PLATFORM
245 xcb_drawable_t drawable;
246 xcb_xfixes_region_t region;
247 int depth;
248 int bytes_per_pixel;
249 xcb_gcontext_t gc;
250 xcb_gcontext_t swapgc;
251 #endif
252
253 #ifdef HAVE_WAYLAND_PLATFORM
254 struct wl_egl_window *wl_win;
255 int dx;
256 int dy;
257 struct wl_callback *throttle_callback;
258 int format;
259 #endif
260
261 #ifdef HAVE_DRM_PLATFORM
262 struct gbm_dri_surface *gbm_surf;
263 #endif
264
265 #if defined(HAVE_WAYLAND_PLATFORM) || defined(HAVE_DRM_PLATFORM)
266 __DRIbuffer *dri_buffers[__DRI_BUFFER_COUNT];
267 struct {
268 #ifdef HAVE_WAYLAND_PLATFORM
269 struct wl_buffer *wl_buffer;
270 __DRIimage *dri_image;
271 /* for is_different_gpu case. NULL else */
272 __DRIimage *linear_copy;
273 /* for swrast */
274 void *data;
275 int data_size;
276 #endif
277 #ifdef HAVE_DRM_PLATFORM
278 struct gbm_bo *bo;
279 #endif
280 int locked;
281 int age;
282 } color_buffers[4], *back, *current;
283 #endif
284
285 #ifdef HAVE_ANDROID_PLATFORM
286 struct ANativeWindow *window;
287 struct ANativeWindowBuffer *buffer;
288
289 /* EGL-owned buffers */
290 __DRIbuffer *local_buffers[__DRI_BUFFER_COUNT];
291 #endif
292 };
293
294
295 struct dri2_egl_config
296 {
297 _EGLConfig base;
298 const __DRIconfig *dri_single_config[2];
299 const __DRIconfig *dri_double_config[2];
300 };
301
302 struct dri2_egl_image
303 {
304 _EGLImage base;
305 __DRIimage *dri_image;
306 };
307
308 struct dri2_egl_sync {
309 _EGLSync base;
310 int refcount;
311 void *fence;
312 };
313
314 /* From xmlpool/options.h, user exposed so should be stable */
315 #define DRI_CONF_VBLANK_NEVER 0
316 #define DRI_CONF_VBLANK_DEF_INTERVAL_0 1
317 #define DRI_CONF_VBLANK_DEF_INTERVAL_1 2
318 #define DRI_CONF_VBLANK_ALWAYS_SYNC 3
319
320 /* standard typecasts */
321 _EGL_DRIVER_STANDARD_TYPECASTS(dri2_egl)
322 _EGL_DRIVER_TYPECAST(dri2_egl_image, _EGLImage, obj)
323 _EGL_DRIVER_TYPECAST(dri2_egl_sync, _EGLSync, obj)
324
325 extern const __DRIimageLookupExtension image_lookup_extension;
326 extern const __DRIuseInvalidateExtension use_invalidate;
327
328 EGLBoolean
329 dri2_load_driver(_EGLDisplay *disp);
330
331 /* Helper for platforms not using dri2_create_screen */
332 void
333 dri2_setup_screen(_EGLDisplay *disp);
334
335 EGLBoolean
336 dri2_load_driver_swrast(_EGLDisplay *disp);
337
338 EGLBoolean
339 dri2_load_driver_dri3(_EGLDisplay *disp);
340
341 EGLBoolean
342 dri2_create_screen(_EGLDisplay *disp);
343
344 __DRIdrawable *
345 dri2_surface_get_dri_drawable(_EGLSurface *surf);
346
347 __DRIimage *
348 dri2_lookup_egl_image(__DRIscreen *screen, void *image, void *data);
349
350 struct dri2_egl_config *
351 dri2_add_config(_EGLDisplay *disp, const __DRIconfig *dri_config, int id,
352 EGLint surface_type, const EGLint *attr_list,
353 const unsigned int *rgba_masks);
354
355 _EGLImage *
356 dri2_create_image_khr(_EGLDriver *drv, _EGLDisplay *disp,
357 _EGLContext *ctx, EGLenum target,
358 EGLClientBuffer buffer, const EGLint *attr_list);
359
360 EGLBoolean
361 dri2_initialize_x11(_EGLDriver *drv, _EGLDisplay *disp);
362
363 EGLBoolean
364 dri2_initialize_drm(_EGLDriver *drv, _EGLDisplay *disp);
365
366 EGLBoolean
367 dri2_initialize_wayland(_EGLDriver *drv, _EGLDisplay *disp);
368
369 EGLBoolean
370 dri2_initialize_android(_EGLDriver *drv, _EGLDisplay *disp);
371
372 EGLBoolean
373 dri2_initialize_surfaceless(_EGLDriver *drv, _EGLDisplay *disp);
374
375 void
376 dri2_flush_drawable_for_swapbuffers(_EGLDisplay *disp, _EGLSurface *draw);
377
378 const __DRIconfig *
379 dri2_get_dri_config(struct dri2_egl_config *conf, EGLint surface_type,
380 EGLenum colorspace);
381
382 #endif /* EGL_DRI2_INCLUDED */