egl/dri2: remove superfluous flush when changing the context
[platform/upstream/mesa.git] / src / egl / drivers / dri2 / egl_dri2.c
1 /*
2  * Copyright © 2010 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 #include <stdbool.h>
29 #include <stdint.h>
30 #include <stdbool.h>
31 #include <stdlib.h>
32 #include <string.h>
33 #include <stdio.h>
34 #include <limits.h>
35 #include <dlfcn.h>
36 #include <fcntl.h>
37 #include <errno.h>
38 #include <unistd.h>
39 #include <c11/threads.h>
40 #include <time.h>
41 #ifdef HAVE_LIBDRM
42 #include <xf86drm.h>
43 #include "drm-uapi/drm_fourcc.h"
44 #endif
45 #include <GL/gl.h>
46 #include <GL/internal/dri_interface.h>
47 #include <sys/types.h>
48 #include <sys/stat.h>
49
50 #ifdef HAVE_WAYLAND_PLATFORM
51 #include <wayland-client.h>
52 #include "wayland-drm.h"
53 #include "wayland-drm-client-protocol.h"
54 #include "linux-dmabuf-unstable-v1-client-protocol.h"
55 #endif
56
57 #ifdef HAVE_X11_PLATFORM
58 #include "X11/Xlibint.h"
59 #endif
60
61 #include "egldefines.h"
62 #include "egl_dri2.h"
63 #include "GL/mesa_glinterop.h"
64 #include "loader/loader.h"
65 #include "util/libsync.h"
66 #include "util/os_file.h"
67 #include "util/u_atomic.h"
68 #include "util/u_vector.h"
69 #include "mapi/glapi/glapi.h"
70 #include "util/bitscan.h"
71 #include "util/u_math.h"
72
73 #define NUM_ATTRIBS 12
74
75 static const struct dri2_pbuffer_visual {
76    const char *format_name;
77    unsigned int dri_image_format;
78    int rgba_shifts[4];
79    unsigned int rgba_sizes[4];
80 } dri2_pbuffer_visuals[] = {
81    {
82       "ABGR16F",
83       __DRI_IMAGE_FORMAT_ABGR16161616F,
84       { 0, 16, 32, 48 },
85       { 16, 16, 16, 16 }
86    },
87    {
88       "XBGR16F",
89       __DRI_IMAGE_FORMAT_XBGR16161616F,
90       { 0, 16, 32, -1 },
91       { 16, 16, 16, 0 }
92    },
93    {
94       "A2RGB10",
95       __DRI_IMAGE_FORMAT_ARGB2101010,
96       { 20, 10, 0, 30 },
97       { 10, 10, 10, 2 }
98    },
99    {
100       "X2RGB10",
101       __DRI_IMAGE_FORMAT_XRGB2101010,
102       { 20, 10, 0, -1 },
103       { 10, 10, 10, 0 }
104    },
105    {
106       "ARGB8888",
107       __DRI_IMAGE_FORMAT_ARGB8888,
108       { 16, 8, 0, 24 },
109       { 8, 8, 8, 8 }
110    },
111    {
112       "RGB888",
113       __DRI_IMAGE_FORMAT_XRGB8888,
114       { 16, 8, 0, -1 },
115       { 8, 8, 8, 0 }
116    },
117    {
118       "RGB565",
119       __DRI_IMAGE_FORMAT_RGB565,
120       { 11, 5, 0, -1 },
121       { 5, 6, 5, 0 }
122    },
123 };
124
125 static void
126 dri_set_background_context(void *loaderPrivate)
127 {
128    _EGLContext *ctx = _eglGetCurrentContext();
129    _EGLThreadInfo *t = _eglGetCurrentThread();
130
131    _eglBindContextToThread(ctx, t);
132 }
133
134 static void
135 dri2_gl_flush()
136 {
137    static void (*glFlush)(void);
138    static mtx_t glFlushMutex = _MTX_INITIALIZER_NP;
139
140    mtx_lock(&glFlushMutex);
141    if (!glFlush)
142       glFlush = _glapi_get_proc_address("glFlush");
143    mtx_unlock(&glFlushMutex);
144
145    /* if glFlush is not available things are horribly broken */
146    if (!glFlush) {
147       _eglLog(_EGL_WARNING, "DRI2: failed to find glFlush entry point");
148       return;
149    }
150
151    glFlush();
152 }
153
154 static GLboolean
155 dri_is_thread_safe(void *loaderPrivate)
156 {
157    struct dri2_egl_surface *dri2_surf = loaderPrivate;
158    UNUSED _EGLDisplay *display =  dri2_surf->base.Resource.Display;
159
160 #ifdef HAVE_X11_PLATFORM
161    Display *xdpy = (Display*)display->PlatformDisplay;
162
163    /* Check Xlib is running in thread safe mode when running on EGL/X11-xlib
164     * platform
165     *
166     * 'lock_fns' is the XLockDisplay function pointer of the X11 display 'dpy'.
167     * It wll be NULL if XInitThreads wasn't called.
168     */
169    if (display->Platform == _EGL_PLATFORM_X11 && xdpy && !xdpy->lock_fns)
170       return false;
171 #endif
172
173    return true;
174 }
175
176 const __DRIbackgroundCallableExtension background_callable_extension = {
177    .base = { __DRI_BACKGROUND_CALLABLE, 2 },
178
179    .setBackgroundContext = dri_set_background_context,
180    .isThreadSafe         = dri_is_thread_safe,
181 };
182
183 const __DRIuseInvalidateExtension use_invalidate = {
184    .base = { __DRI_USE_INVALIDATE, 1 }
185 };
186
187 static void
188 dri2_get_pbuffer_drawable_info(__DRIdrawable * draw,
189                                int *x, int *y, int *w, int *h,
190                                void *loaderPrivate)
191 {
192    struct dri2_egl_surface *dri2_surf = loaderPrivate;
193
194    *x = *y = 0;
195    *w = dri2_surf->base.Width;
196    *h = dri2_surf->base.Height;
197 }
198
199 static int
200 dri2_get_bytes_per_pixel(struct dri2_egl_surface *dri2_surf)
201 {
202    const int depth = dri2_surf->base.Config->BufferSize;
203    return depth ? util_next_power_of_two(depth / 8) : 0;
204 }
205
206 static void
207 dri2_put_image(__DRIdrawable * draw, int op,
208                int x, int y, int w, int h,
209                char *data, void *loaderPrivate)
210 {
211    struct dri2_egl_surface *dri2_surf = loaderPrivate;
212    const int bpp = dri2_get_bytes_per_pixel(dri2_surf);
213    const int width = dri2_surf->base.Width;
214    const int height = dri2_surf->base.Height;
215    const int dst_stride = width*bpp;
216    const int src_stride = w*bpp;
217    const int x_offset = x*bpp;
218    int copy_width = src_stride;
219
220    if (!dri2_surf->swrast_device_buffer)
221       dri2_surf->swrast_device_buffer = malloc(height*dst_stride);
222
223    if (dri2_surf->swrast_device_buffer) {
224       const char *src = data;
225       char *dst = dri2_surf->swrast_device_buffer;
226
227       dst += x_offset;
228       dst += y*dst_stride;
229
230       /* Drivers are allowed to submit OOB PutImage requests, so clip here. */
231       if (copy_width > dst_stride - x_offset)
232          copy_width = dst_stride - x_offset;
233       if (h > height - y)
234          h = height - y;
235
236       for (; 0 < h; --h) {
237          memcpy(dst, src, copy_width);
238          dst += dst_stride;
239          src += src_stride;
240       }
241    }
242 }
243
244 static void
245 dri2_get_image(__DRIdrawable * read,
246                int x, int y, int w, int h,
247                char *data, void *loaderPrivate)
248 {
249    struct dri2_egl_surface *dri2_surf = loaderPrivate;
250    const int bpp = dri2_get_bytes_per_pixel(dri2_surf);
251    const int width = dri2_surf->base.Width;
252    const int height = dri2_surf->base.Height;
253    const int src_stride = width*bpp;
254    const int dst_stride = w*bpp;
255    const int x_offset = x*bpp;
256    int copy_width = dst_stride;
257    const char *src = dri2_surf->swrast_device_buffer;
258    char *dst = data;
259
260    if (!src) {
261       memset(data, 0, copy_width * h);
262       return;
263    }
264
265    src += x_offset;
266    src += y*src_stride;
267
268    /* Drivers are allowed to submit OOB GetImage requests, so clip here. */
269    if (copy_width > src_stride - x_offset)
270       copy_width = src_stride - x_offset;
271    if (h > height - y)
272       h = height - y;
273
274    for (; 0 < h; --h) {
275       memcpy(dst, src, copy_width);
276       src += src_stride;
277       dst += dst_stride;
278    }
279
280 }
281
282 /* HACK: technically we should have swrast_null, instead of these.
283  */
284 const __DRIswrastLoaderExtension swrast_pbuffer_loader_extension = {
285    .base            = { __DRI_SWRAST_LOADER, 1 },
286    .getDrawableInfo = dri2_get_pbuffer_drawable_info,
287    .putImage        = dri2_put_image,
288    .getImage        = dri2_get_image,
289 };
290
291 static const EGLint dri2_to_egl_attribute_map[__DRI_ATTRIB_MAX] = {
292    [__DRI_ATTRIB_BUFFER_SIZE ]          = EGL_BUFFER_SIZE,
293    [__DRI_ATTRIB_LEVEL]                 = EGL_LEVEL,
294    [__DRI_ATTRIB_LUMINANCE_SIZE]        = EGL_LUMINANCE_SIZE,
295    [__DRI_ATTRIB_DEPTH_SIZE]            = EGL_DEPTH_SIZE,
296    [__DRI_ATTRIB_STENCIL_SIZE]          = EGL_STENCIL_SIZE,
297    [__DRI_ATTRIB_SAMPLE_BUFFERS]        = EGL_SAMPLE_BUFFERS,
298    [__DRI_ATTRIB_SAMPLES]               = EGL_SAMPLES,
299    [__DRI_ATTRIB_MAX_PBUFFER_WIDTH]     = EGL_MAX_PBUFFER_WIDTH,
300    [__DRI_ATTRIB_MAX_PBUFFER_HEIGHT]    = EGL_MAX_PBUFFER_HEIGHT,
301    [__DRI_ATTRIB_MAX_PBUFFER_PIXELS]    = EGL_MAX_PBUFFER_PIXELS,
302    [__DRI_ATTRIB_MAX_SWAP_INTERVAL]     = EGL_MAX_SWAP_INTERVAL,
303    [__DRI_ATTRIB_MIN_SWAP_INTERVAL]     = EGL_MIN_SWAP_INTERVAL,
304    [__DRI_ATTRIB_YINVERTED]             = EGL_Y_INVERTED_NOK,
305 };
306
307 const __DRIconfig *
308 dri2_get_dri_config(struct dri2_egl_config *conf, EGLint surface_type,
309                     EGLenum colorspace)
310 {
311    const bool double_buffer = surface_type == EGL_WINDOW_BIT;
312    const bool srgb = colorspace == EGL_GL_COLORSPACE_SRGB_KHR;
313
314    return conf->dri_config[double_buffer][srgb];
315 }
316
317 static EGLBoolean
318 dri2_match_config(const _EGLConfig *conf, const _EGLConfig *criteria)
319 {
320    if (_eglCompareConfigs(conf, criteria, NULL, EGL_FALSE) != 0)
321       return EGL_FALSE;
322
323    if (!_eglMatchConfig(conf, criteria))
324       return EGL_FALSE;
325
326    return EGL_TRUE;
327 }
328
329 void
330 dri2_get_shifts_and_sizes(const __DRIcoreExtension *core,
331                           const __DRIconfig *config, int *shifts,
332                           unsigned int *sizes)
333 {
334    unsigned int mask;
335
336    if (core->getConfigAttrib(config, __DRI_ATTRIB_RED_SHIFT, (unsigned int *)&shifts[0])) {
337       core->getConfigAttrib(config, __DRI_ATTRIB_GREEN_SHIFT, (unsigned int *)&shifts[1]);
338       core->getConfigAttrib(config, __DRI_ATTRIB_BLUE_SHIFT, (unsigned int *)&shifts[2]);
339       core->getConfigAttrib(config, __DRI_ATTRIB_ALPHA_SHIFT, (unsigned int *)&shifts[3]);
340    } else {
341       /* Driver isn't exposing shifts, so convert masks to shifts */
342       core->getConfigAttrib(config, __DRI_ATTRIB_RED_MASK, &mask);
343       shifts[0] = ffs(mask) - 1;
344       core->getConfigAttrib(config, __DRI_ATTRIB_GREEN_MASK, &mask);
345       shifts[1] = ffs(mask) - 1;
346       core->getConfigAttrib(config, __DRI_ATTRIB_BLUE_MASK, &mask);
347       shifts[2] = ffs(mask) - 1;
348       core->getConfigAttrib(config, __DRI_ATTRIB_ALPHA_MASK, &mask);
349       shifts[3] = ffs(mask) - 1;
350    }
351
352    core->getConfigAttrib(config, __DRI_ATTRIB_RED_SIZE, &sizes[0]);
353    core->getConfigAttrib(config, __DRI_ATTRIB_GREEN_SIZE, &sizes[1]);
354    core->getConfigAttrib(config, __DRI_ATTRIB_BLUE_SIZE, &sizes[2]);
355    core->getConfigAttrib(config, __DRI_ATTRIB_ALPHA_SIZE, &sizes[3]);
356 }
357
358 void
359 dri2_get_render_type_float(const __DRIcoreExtension *core,
360                            const __DRIconfig *config,
361                            bool *is_float)
362 {
363    unsigned int render_type;
364
365    core->getConfigAttrib(config, __DRI_ATTRIB_RENDER_TYPE, &render_type);
366    *is_float = (render_type & __DRI_ATTRIB_FLOAT_BIT) ? true : false;
367 }
368
369 unsigned int
370 dri2_image_format_for_pbuffer_config(struct dri2_egl_display *dri2_dpy,
371                                      const __DRIconfig *config)
372 {
373    int shifts[4];
374    unsigned int sizes[4];
375
376    dri2_get_shifts_and_sizes(dri2_dpy->core, config, shifts, sizes);
377
378    for (unsigned i = 0; i < ARRAY_SIZE(dri2_pbuffer_visuals); ++i) {
379       const struct dri2_pbuffer_visual *visual = &dri2_pbuffer_visuals[i];
380
381       if (shifts[0] == visual->rgba_shifts[0] &&
382           shifts[1] == visual->rgba_shifts[1] &&
383           shifts[2] == visual->rgba_shifts[2] &&
384           shifts[3] == visual->rgba_shifts[3] &&
385           sizes[0] == visual->rgba_sizes[0] &&
386           sizes[1] == visual->rgba_sizes[1] &&
387           sizes[2] == visual->rgba_sizes[2] &&
388           sizes[3] == visual->rgba_sizes[3]) {
389          return visual->dri_image_format;
390       }
391    }
392
393    return __DRI_IMAGE_FORMAT_NONE;
394 }
395
396 struct dri2_egl_config *
397 dri2_add_config(_EGLDisplay *disp, const __DRIconfig *dri_config, int id,
398                 EGLint surface_type, const EGLint *attr_list,
399                 const int *rgba_shifts, const unsigned int *rgba_sizes)
400 {
401    struct dri2_egl_config *conf;
402    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
403    _EGLConfig base;
404    unsigned int attrib, value, double_buffer;
405    bool srgb = false;
406    EGLint key, bind_to_texture_rgb, bind_to_texture_rgba;
407    int dri_shifts[4] = { -1, -1, -1, -1 };
408    unsigned int dri_sizes[4] = { 0, 0, 0, 0 };
409    _EGLConfig *matching_config;
410    EGLint num_configs = 0;
411    EGLint config_id;
412
413    _eglInitConfig(&base, disp, id);
414
415    double_buffer = 0;
416    bind_to_texture_rgb = 0;
417    bind_to_texture_rgba = 0;
418
419    for (int i = 0; i < __DRI_ATTRIB_MAX; ++i) {
420       if (!dri2_dpy->core->indexConfigAttrib(dri_config, i, &attrib, &value))
421          break;
422
423       switch (attrib) {
424       case __DRI_ATTRIB_RENDER_TYPE:
425          if (value & __DRI_ATTRIB_FLOAT_BIT)
426             base.ComponentType = EGL_COLOR_COMPONENT_TYPE_FLOAT_EXT;
427          if (value & __DRI_ATTRIB_RGBA_BIT)
428             value = EGL_RGB_BUFFER;
429          else if (value & __DRI_ATTRIB_LUMINANCE_BIT)
430             value = EGL_LUMINANCE_BUFFER;
431          else
432             return NULL;
433          base.ColorBufferType = value;
434          break;
435
436       case __DRI_ATTRIB_CONFIG_CAVEAT:
437          if (value & __DRI_ATTRIB_NON_CONFORMANT_CONFIG)
438             value = EGL_NON_CONFORMANT_CONFIG;
439          else if (value & __DRI_ATTRIB_SLOW_BIT)
440             value = EGL_SLOW_CONFIG;
441          else
442             value = EGL_NONE;
443          base.ConfigCaveat = value;
444          break;
445
446       case __DRI_ATTRIB_BIND_TO_TEXTURE_RGB:
447          bind_to_texture_rgb = value;
448          break;
449
450       case __DRI_ATTRIB_BIND_TO_TEXTURE_RGBA:
451          bind_to_texture_rgba = value;
452          break;
453
454       case __DRI_ATTRIB_DOUBLE_BUFFER:
455          double_buffer = value;
456          break;
457
458       case __DRI_ATTRIB_RED_SIZE:
459          dri_sizes[0] = value;
460          base.RedSize = value;
461          break;
462
463       case __DRI_ATTRIB_RED_MASK:
464          dri_shifts[0] = ffs(value) - 1;
465          break;
466
467       case __DRI_ATTRIB_RED_SHIFT:
468          dri_shifts[0] = value;
469          break;
470
471       case __DRI_ATTRIB_GREEN_SIZE:
472          dri_sizes[1] = value;
473          base.GreenSize = value;
474          break;
475
476       case __DRI_ATTRIB_GREEN_MASK:
477          dri_shifts[1] = ffs(value) - 1;
478          break;
479
480       case __DRI_ATTRIB_GREEN_SHIFT:
481          dri_shifts[1] = value;
482          break;
483
484       case __DRI_ATTRIB_BLUE_SIZE:
485          dri_sizes[2] = value;
486          base.BlueSize = value;
487          break;
488
489       case __DRI_ATTRIB_BLUE_MASK:
490          dri_shifts[2] = ffs(value) - 1;
491          break;
492
493       case __DRI_ATTRIB_BLUE_SHIFT:
494          dri_shifts[2] = value;
495          break;
496
497      case __DRI_ATTRIB_ALPHA_SIZE:
498          dri_sizes[3] = value;
499          base.AlphaSize = value;
500          break;
501
502       case __DRI_ATTRIB_ALPHA_MASK:
503          dri_shifts[3] = ffs(value) - 1;
504          break;
505
506       case __DRI_ATTRIB_ALPHA_SHIFT:
507          dri_shifts[3] = value;
508          break;
509
510       case __DRI_ATTRIB_ACCUM_RED_SIZE:
511       case __DRI_ATTRIB_ACCUM_GREEN_SIZE:
512       case __DRI_ATTRIB_ACCUM_BLUE_SIZE:
513       case __DRI_ATTRIB_ACCUM_ALPHA_SIZE:
514          /* Don't expose visuals with the accumulation buffer. */
515          if (value > 0)
516             return NULL;
517          break;
518
519       case __DRI_ATTRIB_FRAMEBUFFER_SRGB_CAPABLE:
520          srgb = value != 0;
521          if (!disp->Extensions.KHR_gl_colorspace && srgb)
522             return NULL;
523          break;
524
525       case __DRI_ATTRIB_MAX_PBUFFER_WIDTH:
526          base.MaxPbufferWidth = _EGL_MAX_PBUFFER_WIDTH;
527          break;
528       case __DRI_ATTRIB_MAX_PBUFFER_HEIGHT:
529          base.MaxPbufferHeight = _EGL_MAX_PBUFFER_HEIGHT;
530          break;
531       case __DRI_ATTRIB_MUTABLE_RENDER_BUFFER:
532          if (disp->Extensions.KHR_mutable_render_buffer)
533             surface_type |= EGL_MUTABLE_RENDER_BUFFER_BIT_KHR;
534          break;
535       default:
536          key = dri2_to_egl_attribute_map[attrib];
537          if (key != 0)
538             _eglSetConfigKey(&base, key, value);
539          break;
540       }
541    }
542
543    if (attr_list)
544       for (int i = 0; attr_list[i] != EGL_NONE; i += 2)
545          _eglSetConfigKey(&base, attr_list[i], attr_list[i+1]);
546
547    if (rgba_shifts && memcmp(rgba_shifts, dri_shifts, sizeof(dri_shifts)))
548       return NULL;
549
550    if (rgba_sizes && memcmp(rgba_sizes, dri_sizes, sizeof(dri_sizes)))
551       return NULL;
552
553    base.NativeRenderable = EGL_TRUE;
554
555    base.SurfaceType = surface_type;
556    if (surface_type & (EGL_PBUFFER_BIT |
557        (disp->Extensions.NOK_texture_from_pixmap ? EGL_PIXMAP_BIT : 0))) {
558       base.BindToTextureRGB = bind_to_texture_rgb;
559       if (base.AlphaSize > 0)
560          base.BindToTextureRGBA = bind_to_texture_rgba;
561    }
562
563    if (double_buffer) {
564       surface_type &= ~EGL_PIXMAP_BIT;
565    }
566
567    if (!surface_type)
568       return NULL;
569
570    base.RenderableType = disp->ClientAPIs;
571    base.Conformant = disp->ClientAPIs;
572
573    base.MinSwapInterval = dri2_dpy->min_swap_interval;
574    base.MaxSwapInterval = dri2_dpy->max_swap_interval;
575
576    if (!_eglValidateConfig(&base, EGL_FALSE)) {
577       _eglLog(_EGL_DEBUG, "DRI2: failed to validate config %d", id);
578       return NULL;
579    }
580
581    config_id = base.ConfigID;
582    base.ConfigID    = EGL_DONT_CARE;
583    base.SurfaceType = EGL_DONT_CARE;
584    num_configs = _eglFilterArray(disp->Configs, (void **) &matching_config, 1,
585                                  (_EGLArrayForEach) dri2_match_config, &base);
586
587    if (num_configs == 1) {
588       conf = (struct dri2_egl_config *) matching_config;
589
590       if (!conf->dri_config[double_buffer][srgb])
591          conf->dri_config[double_buffer][srgb] = dri_config;
592       else
593          /* a similar config type is already added (unlikely) => discard */
594          return NULL;
595    }
596    else if (num_configs == 0) {
597       conf = calloc(1, sizeof *conf);
598       if (conf == NULL)
599          return NULL;
600
601       conf->dri_config[double_buffer][srgb] = dri_config;
602
603       memcpy(&conf->base, &base, sizeof base);
604       conf->base.SurfaceType = 0;
605       conf->base.ConfigID = config_id;
606
607       _eglLinkConfig(&conf->base);
608    }
609    else {
610       unreachable("duplicates should not be possible");
611       return NULL;
612    }
613
614    conf->base.SurfaceType |= surface_type;
615
616    return conf;
617 }
618
619 EGLBoolean
620 dri2_add_pbuffer_configs_for_visuals(_EGLDisplay *disp)
621 {
622    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
623    unsigned int format_count[ARRAY_SIZE(dri2_pbuffer_visuals)] = { 0 };
624    unsigned int config_count = 0;
625
626    for (unsigned i = 0; dri2_dpy->driver_configs[i] != NULL; i++) {
627       for (unsigned j = 0; j < ARRAY_SIZE(dri2_pbuffer_visuals); j++) {
628          struct dri2_egl_config *dri2_conf;
629
630          dri2_conf = dri2_add_config(disp, dri2_dpy->driver_configs[i],
631                config_count + 1, EGL_PBUFFER_BIT, NULL,
632                dri2_pbuffer_visuals[j].rgba_shifts, dri2_pbuffer_visuals[j].rgba_sizes);
633
634          if (dri2_conf) {
635             if (dri2_conf->base.ConfigID == config_count + 1)
636                config_count++;
637             format_count[j]++;
638          }
639       }
640    }
641
642    for (unsigned i = 0; i < ARRAY_SIZE(format_count); i++) {
643       if (!format_count[i]) {
644          _eglLog(_EGL_DEBUG, "No DRI config supports native format %s",
645                dri2_pbuffer_visuals[i].format_name);
646       }
647    }
648
649    return (config_count != 0);
650 }
651
652 GLboolean
653 dri2_validate_egl_image(void *image, void *data)
654 {
655    _EGLDisplay *disp = data;
656    _EGLImage *img;
657
658    mtx_lock(&disp->Mutex);
659    img = _eglLookupImage(image, disp);
660    mtx_unlock(&disp->Mutex);
661
662    if (img == NULL) {
663       _eglError(EGL_BAD_PARAMETER, "dri2_validate_egl_image");
664       return false;
665    }
666
667    return true;
668 }
669
670 __DRIimage *
671 dri2_lookup_egl_image_validated(void *image, void *data)
672 {
673    struct dri2_egl_image *dri2_img;
674
675    (void)data;
676
677    dri2_img = dri2_egl_image(image);
678
679    return dri2_img->dri_image;
680 }
681
682 __DRIimage *
683 dri2_lookup_egl_image(__DRIscreen *screen, void *image, void *data)
684 {
685    (void) screen;
686
687    if (!dri2_validate_egl_image(image, data))
688       return NULL;
689
690    return dri2_lookup_egl_image_validated(image, data);
691 }
692
693 const __DRIimageLookupExtension image_lookup_extension = {
694    .base = { __DRI_IMAGE_LOOKUP, 2 },
695
696    .lookupEGLImage       = dri2_lookup_egl_image,
697    .validateEGLImage     = dri2_validate_egl_image,
698    .lookupEGLImageValidated = dri2_lookup_egl_image_validated,
699 };
700
701 struct dri2_extension_match {
702    const char *name;
703    int version;
704    int offset;
705 };
706
707 static const struct dri2_extension_match dri3_driver_extensions[] = {
708    { __DRI_CORE, 1, offsetof(struct dri2_egl_display, core) },
709    { __DRI_IMAGE_DRIVER, 1, offsetof(struct dri2_egl_display, image_driver) },
710    { NULL, 0, 0 }
711 };
712
713 static const struct dri2_extension_match dri2_driver_extensions[] = {
714    { __DRI_CORE, 1, offsetof(struct dri2_egl_display, core) },
715    { __DRI_DRI2, 2, offsetof(struct dri2_egl_display, dri2) },
716    { NULL, 0, 0 }
717 };
718
719 static const struct dri2_extension_match dri2_core_extensions[] = {
720    { __DRI2_FLUSH, 1, offsetof(struct dri2_egl_display, flush) },
721    { __DRI_TEX_BUFFER, 2, offsetof(struct dri2_egl_display, tex_buffer) },
722    { __DRI_IMAGE, 1, offsetof(struct dri2_egl_display, image) },
723    { NULL, 0, 0 }
724 };
725
726 static const struct dri2_extension_match swrast_driver_extensions[] = {
727    { __DRI_CORE, 1, offsetof(struct dri2_egl_display, core) },
728    { __DRI_SWRAST, 2, offsetof(struct dri2_egl_display, swrast) },
729    { NULL, 0, 0 }
730 };
731
732 static const struct dri2_extension_match swrast_core_extensions[] = {
733    { __DRI_TEX_BUFFER, 2, offsetof(struct dri2_egl_display, tex_buffer) },
734    { NULL, 0, 0 }
735 };
736
737 static const struct dri2_extension_match optional_driver_extensions[] = {
738    { __DRI_CONFIG_OPTIONS, 1, offsetof(struct dri2_egl_display, configOptions) },
739    { NULL, 0, 0 }
740 };
741
742 static const struct dri2_extension_match optional_core_extensions[] = {
743    { __DRI2_ROBUSTNESS, 1, offsetof(struct dri2_egl_display, robustness) },
744    { __DRI2_NO_ERROR, 1, offsetof(struct dri2_egl_display, no_error) },
745    { __DRI2_CONFIG_QUERY, 1, offsetof(struct dri2_egl_display, config) },
746    { __DRI2_FENCE, 1, offsetof(struct dri2_egl_display, fence) },
747    { __DRI2_BUFFER_DAMAGE, 1, offsetof(struct dri2_egl_display, buffer_damage) },
748    { __DRI2_RENDERER_QUERY, 1, offsetof(struct dri2_egl_display, rendererQuery) },
749    { __DRI2_INTEROP, 1, offsetof(struct dri2_egl_display, interop) },
750    { __DRI_IMAGE, 1, offsetof(struct dri2_egl_display, image) },
751    { __DRI2_FLUSH_CONTROL, 1, offsetof(struct dri2_egl_display, flush_control) },
752    { __DRI2_BLOB, 1, offsetof(struct dri2_egl_display, blob) },
753    { __DRI_MUTABLE_RENDER_BUFFER_DRIVER, 1, offsetof(struct dri2_egl_display, mutable_render_buffer) },
754    { NULL, 0, 0 }
755 };
756
757 static EGLBoolean
758 dri2_bind_extensions(struct dri2_egl_display *dri2_dpy,
759                      const struct dri2_extension_match *matches,
760                      const __DRIextension **extensions,
761                      bool optional)
762 {
763    int ret = EGL_TRUE;
764    void *field;
765
766    for (int i = 0; extensions[i]; i++) {
767       _eglLog(_EGL_DEBUG, "found extension `%s'", extensions[i]->name);
768       for (int j = 0; matches[j].name; j++) {
769          if (strcmp(extensions[i]->name, matches[j].name) == 0 &&
770              extensions[i]->version >= matches[j].version) {
771             field = ((char *) dri2_dpy + matches[j].offset);
772             *(const __DRIextension **) field = extensions[i];
773             _eglLog(_EGL_INFO, "found extension %s version %d",
774                     extensions[i]->name, extensions[i]->version);
775             break;
776          }
777       }
778    }
779
780    for (int j = 0; matches[j].name; j++) {
781       field = ((char *) dri2_dpy + matches[j].offset);
782       if (*(const __DRIextension **) field == NULL) {
783          if (optional) {
784             _eglLog(_EGL_DEBUG, "did not find optional extension %s version %d",
785                     matches[j].name, matches[j].version);
786          } else {
787             _eglLog(_EGL_WARNING, "did not find extension %s version %d",
788                     matches[j].name, matches[j].version);
789             ret = EGL_FALSE;
790          }
791       }
792    }
793
794    return ret;
795 }
796
797 static const __DRIextension **
798 dri2_open_driver(_EGLDisplay *disp)
799 {
800    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
801    static const char *search_path_vars[] = {
802       "LIBGL_DRIVERS_PATH",
803       NULL,
804    };
805
806    return loader_open_driver(dri2_dpy->driver_name,
807                              &dri2_dpy->driver,
808                              search_path_vars);
809 }
810
811 static EGLBoolean
812 dri2_load_driver_common(_EGLDisplay *disp,
813                         const struct dri2_extension_match *driver_extensions)
814 {
815    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
816    const __DRIextension **extensions;
817
818    extensions = dri2_open_driver(disp);
819    if (!extensions)
820       return EGL_FALSE;
821
822    if (!dri2_bind_extensions(dri2_dpy, driver_extensions, extensions, false)) {
823       dlclose(dri2_dpy->driver);
824       dri2_dpy->driver = NULL;
825       return EGL_FALSE;
826    }
827    dri2_dpy->driver_extensions = extensions;
828
829    dri2_bind_extensions(dri2_dpy, optional_driver_extensions, extensions, true);
830
831    return EGL_TRUE;
832 }
833
834 EGLBoolean
835 dri2_load_driver(_EGLDisplay *disp)
836 {
837    return dri2_load_driver_common(disp, dri2_driver_extensions);
838 }
839
840 EGLBoolean
841 dri2_load_driver_dri3(_EGLDisplay *disp)
842 {
843    return dri2_load_driver_common(disp, dri3_driver_extensions);
844 }
845
846 EGLBoolean
847 dri2_load_driver_swrast(_EGLDisplay *disp)
848 {
849    return dri2_load_driver_common(disp, swrast_driver_extensions);
850 }
851
852 static unsigned
853 dri2_renderer_query_integer(struct dri2_egl_display *dri2_dpy, int param)
854 {
855    const __DRI2rendererQueryExtension *rendererQuery = dri2_dpy->rendererQuery;
856    unsigned int value = 0;
857
858    if (!rendererQuery ||
859        rendererQuery->queryInteger(dri2_dpy->dri_screen, param, &value) == -1)
860       return 0;
861
862    return value;
863 }
864
865 static const char *
866 dri2_query_driver_name(_EGLDisplay *disp)
867 {
868     struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
869     return dri2_dpy->driver_name;
870 }
871
872 static char *
873 dri2_query_driver_config(_EGLDisplay *disp)
874 {
875     struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
876     const __DRIconfigOptionsExtension *ext = dri2_dpy->configOptions;
877
878     if (ext->base.version >= 2)
879         return ext->getXml(dri2_dpy->driver_name);
880
881     return strdup(ext->xml);
882 }
883
884
885 void
886 dri2_setup_screen(_EGLDisplay *disp)
887 {
888    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
889    unsigned int api_mask;
890
891    /*
892     * EGL 1.5 specification defines the default value to 1. Moreover,
893     * eglSwapInterval() is required to clamp requested value to the supported
894     * range. Since the default value is implicitly assumed to be supported,
895     * use it as both minimum and maximum for the platforms that do not allow
896     * changing the interval. Platforms, which allow it (e.g. x11, wayland)
897     * override these values already.
898     */
899    dri2_dpy->min_swap_interval = 1;
900    dri2_dpy->max_swap_interval = 1;
901    dri2_dpy->default_swap_interval = 1;
902
903    if (dri2_dpy->image_driver) {
904       api_mask = dri2_dpy->image_driver->getAPIMask(dri2_dpy->dri_screen);
905    } else if (dri2_dpy->dri2) {
906       api_mask = dri2_dpy->dri2->getAPIMask(dri2_dpy->dri_screen);
907    } else {
908       assert(dri2_dpy->swrast);
909       api_mask = 1 << __DRI_API_OPENGL |
910                  1 << __DRI_API_GLES |
911                  1 << __DRI_API_GLES2 |
912                  1 << __DRI_API_GLES3;
913    }
914
915    disp->ClientAPIs = 0;
916    if ((api_mask & (1 <<__DRI_API_OPENGL)) && _eglIsApiValid(EGL_OPENGL_API))
917       disp->ClientAPIs |= EGL_OPENGL_BIT;
918    if ((api_mask & (1 << __DRI_API_GLES)) && _eglIsApiValid(EGL_OPENGL_ES_API))
919       disp->ClientAPIs |= EGL_OPENGL_ES_BIT;
920    if ((api_mask & (1 << __DRI_API_GLES2)) && _eglIsApiValid(EGL_OPENGL_ES_API))
921       disp->ClientAPIs |= EGL_OPENGL_ES2_BIT;
922    if ((api_mask & (1 << __DRI_API_GLES3)) && _eglIsApiValid(EGL_OPENGL_ES_API))
923       disp->ClientAPIs |= EGL_OPENGL_ES3_BIT_KHR;
924
925    assert(dri2_dpy->image_driver || dri2_dpy->dri2 || dri2_dpy->swrast);
926    disp->Extensions.KHR_no_config_context = EGL_TRUE;
927    disp->Extensions.KHR_surfaceless_context = EGL_TRUE;
928
929    if (dri2_dpy->configOptions) {
930        disp->Extensions.MESA_query_driver = EGL_TRUE;
931    }
932
933    /* Report back to EGL the bitmask of priorities supported */
934    disp->Extensions.IMG_context_priority =
935       dri2_renderer_query_integer(dri2_dpy,
936                                   __DRI2_RENDERER_HAS_CONTEXT_PRIORITY);
937
938    disp->Extensions.EXT_pixel_format_float = EGL_TRUE;
939
940    if (dri2_renderer_query_integer(dri2_dpy,
941                                    __DRI2_RENDERER_HAS_FRAMEBUFFER_SRGB))
942       disp->Extensions.KHR_gl_colorspace = EGL_TRUE;
943
944    if (dri2_dpy->image_driver ||
945        (dri2_dpy->dri2 && dri2_dpy->dri2->base.version >= 3) ||
946        (dri2_dpy->swrast && dri2_dpy->swrast->base.version >= 3)) {
947       disp->Extensions.KHR_create_context = EGL_TRUE;
948
949       if (dri2_dpy->robustness)
950          disp->Extensions.EXT_create_context_robustness = EGL_TRUE;
951    }
952
953    if (dri2_dpy->no_error)
954       disp->Extensions.KHR_create_context_no_error = EGL_TRUE;
955
956    if (dri2_dpy->fence) {
957       disp->Extensions.KHR_fence_sync = EGL_TRUE;
958       disp->Extensions.KHR_wait_sync = EGL_TRUE;
959       if (dri2_dpy->fence->get_fence_from_cl_event)
960          disp->Extensions.KHR_cl_event2 = EGL_TRUE;
961       if (dri2_dpy->fence->base.version >= 2 &&
962           dri2_dpy->fence->get_capabilities) {
963          unsigned capabilities =
964             dri2_dpy->fence->get_capabilities(dri2_dpy->dri_screen);
965          disp->Extensions.ANDROID_native_fence_sync =
966             (capabilities & __DRI_FENCE_CAP_NATIVE_FD) != 0;
967       }
968    }
969
970    if (dri2_dpy->blob)
971       disp->Extensions.ANDROID_blob_cache = EGL_TRUE;
972
973    disp->Extensions.KHR_reusable_sync = EGL_TRUE;
974
975    if (dri2_dpy->image) {
976       if (dri2_dpy->image->base.version >= 10 &&
977           dri2_dpy->image->getCapabilities != NULL) {
978          int capabilities;
979
980          capabilities = dri2_dpy->image->getCapabilities(dri2_dpy->dri_screen);
981          disp->Extensions.MESA_drm_image = (capabilities & __DRI_IMAGE_CAP_GLOBAL_NAMES) != 0;
982
983          if (dri2_dpy->image->base.version >= 11)
984             disp->Extensions.MESA_image_dma_buf_export = EGL_TRUE;
985       } else {
986          disp->Extensions.MESA_drm_image = EGL_TRUE;
987          if (dri2_dpy->image->base.version >= 11)
988             disp->Extensions.MESA_image_dma_buf_export = EGL_TRUE;
989       }
990
991       disp->Extensions.KHR_image_base = EGL_TRUE;
992       disp->Extensions.KHR_gl_renderbuffer_image = EGL_TRUE;
993       if (dri2_dpy->image->base.version >= 5 &&
994           dri2_dpy->image->createImageFromTexture) {
995          disp->Extensions.KHR_gl_texture_2D_image = EGL_TRUE;
996          disp->Extensions.KHR_gl_texture_cubemap_image = EGL_TRUE;
997
998          if (dri2_renderer_query_integer(dri2_dpy,
999                                          __DRI2_RENDERER_HAS_TEXTURE_3D))
1000              disp->Extensions.KHR_gl_texture_3D_image = EGL_TRUE;
1001       }
1002 #ifdef HAVE_LIBDRM
1003       if (dri2_dpy->image->base.version >= 8 &&
1004           dri2_dpy->image->createImageFromDmaBufs) {
1005          disp->Extensions.EXT_image_dma_buf_import = EGL_TRUE;
1006          disp->Extensions.EXT_image_dma_buf_import_modifiers = EGL_TRUE;
1007       }
1008 #endif
1009    }
1010
1011    if (dri2_dpy->flush_control)
1012       disp->Extensions.KHR_context_flush_control = EGL_TRUE;
1013
1014    if (dri2_dpy->buffer_damage && dri2_dpy->buffer_damage->set_damage_region)
1015       disp->Extensions.KHR_partial_update = EGL_TRUE;
1016
1017    disp->Extensions.EXT_protected_surface =
1018       dri2_renderer_query_integer(dri2_dpy,
1019                                   __DRI2_RENDERER_HAS_PROTECTED_CONTENT);
1020 }
1021
1022 void
1023 dri2_setup_swap_interval(_EGLDisplay *disp, int max_swap_interval)
1024 {
1025    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1026    GLint vblank_mode = DRI_CONF_VBLANK_DEF_INTERVAL_1;
1027
1028    /* Allow driconf to override applications.*/
1029    if (dri2_dpy->config)
1030       dri2_dpy->config->configQueryi(dri2_dpy->dri_screen,
1031                                      "vblank_mode", &vblank_mode);
1032    switch (vblank_mode) {
1033    case DRI_CONF_VBLANK_NEVER:
1034       dri2_dpy->min_swap_interval = 0;
1035       dri2_dpy->max_swap_interval = 0;
1036       dri2_dpy->default_swap_interval = 0;
1037       break;
1038    case DRI_CONF_VBLANK_ALWAYS_SYNC:
1039       dri2_dpy->min_swap_interval = 1;
1040       dri2_dpy->max_swap_interval = max_swap_interval;
1041       dri2_dpy->default_swap_interval = 1;
1042       break;
1043    case DRI_CONF_VBLANK_DEF_INTERVAL_0:
1044       dri2_dpy->min_swap_interval = 0;
1045       dri2_dpy->max_swap_interval = max_swap_interval;
1046       dri2_dpy->default_swap_interval = 0;
1047       break;
1048    default:
1049    case DRI_CONF_VBLANK_DEF_INTERVAL_1:
1050       dri2_dpy->min_swap_interval = 0;
1051       dri2_dpy->max_swap_interval = max_swap_interval;
1052       dri2_dpy->default_swap_interval = 1;
1053       break;
1054    }
1055 }
1056
1057 /* All platforms but DRM call this function to create the screen and populate
1058  * the driver_configs. DRM inherits that information from its display - GBM.
1059  */
1060 EGLBoolean
1061 dri2_create_screen(_EGLDisplay *disp)
1062 {
1063    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1064
1065    if (dri2_dpy->image_driver) {
1066       dri2_dpy->dri_screen =
1067          dri2_dpy->image_driver->createNewScreen2(0, dri2_dpy->fd,
1068                                                   dri2_dpy->loader_extensions,
1069                                                   dri2_dpy->driver_extensions,
1070                                                   &dri2_dpy->driver_configs,
1071                                                   disp);
1072    } else if (dri2_dpy->dri2) {
1073       if (dri2_dpy->dri2->base.version >= 4) {
1074          dri2_dpy->dri_screen =
1075             dri2_dpy->dri2->createNewScreen2(0, dri2_dpy->fd,
1076                                              dri2_dpy->loader_extensions,
1077                                              dri2_dpy->driver_extensions,
1078                                              &dri2_dpy->driver_configs, disp);
1079       } else {
1080          dri2_dpy->dri_screen =
1081             dri2_dpy->dri2->createNewScreen(0, dri2_dpy->fd,
1082                                             dri2_dpy->loader_extensions,
1083                                             &dri2_dpy->driver_configs, disp);
1084       }
1085    } else {
1086       assert(dri2_dpy->swrast);
1087       if (dri2_dpy->swrast->base.version >= 4) {
1088          dri2_dpy->dri_screen =
1089             dri2_dpy->swrast->createNewScreen2(0, dri2_dpy->loader_extensions,
1090                                                dri2_dpy->driver_extensions,
1091                                                &dri2_dpy->driver_configs, disp);
1092       } else {
1093          dri2_dpy->dri_screen =
1094             dri2_dpy->swrast->createNewScreen(0, dri2_dpy->loader_extensions,
1095                                               &dri2_dpy->driver_configs, disp);
1096       }
1097    }
1098
1099    if (dri2_dpy->dri_screen == NULL) {
1100       _eglLog(_EGL_WARNING, "DRI2: failed to create dri screen");
1101       return EGL_FALSE;
1102    }
1103
1104    dri2_dpy->own_dri_screen = true;
1105    return EGL_TRUE;
1106 }
1107
1108 EGLBoolean
1109 dri2_setup_extensions(_EGLDisplay *disp)
1110 {
1111    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1112    const struct dri2_extension_match *mandatory_core_extensions;
1113    const __DRIextension **extensions;
1114
1115    extensions = dri2_dpy->core->getExtensions(dri2_dpy->dri_screen);
1116
1117    if (dri2_dpy->image_driver || dri2_dpy->dri2)
1118       mandatory_core_extensions = dri2_core_extensions;
1119    else
1120       mandatory_core_extensions = swrast_core_extensions;
1121
1122    if (!dri2_bind_extensions(dri2_dpy, mandatory_core_extensions, extensions, false))
1123       return EGL_FALSE;
1124
1125 #ifdef HAVE_DRI3_MODIFIERS
1126    dri2_dpy->multibuffers_available =
1127       (dri2_dpy->dri3_major_version > 1 || (dri2_dpy->dri3_major_version == 1 &&
1128                                             dri2_dpy->dri3_minor_version >= 2)) &&
1129       (dri2_dpy->present_major_version > 1 || (dri2_dpy->present_major_version == 1 &&
1130                                                dri2_dpy->present_minor_version >= 2)) &&
1131       (dri2_dpy->image && dri2_dpy->image->base.version >= 15);
1132 #endif
1133
1134    dri2_bind_extensions(dri2_dpy, optional_core_extensions, extensions, true);
1135    return EGL_TRUE;
1136 }
1137
1138 /**
1139  * Called via eglInitialize(), drv->Initialize().
1140  *
1141  * This must be guaranteed to be called exactly once, even if eglInitialize is
1142  * called many times (without a eglTerminate in between).
1143  */
1144 static EGLBoolean
1145 dri2_initialize(_EGLDisplay *disp)
1146 {
1147    EGLBoolean ret = EGL_FALSE;
1148    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1149
1150    /* In the case where the application calls eglMakeCurrent(context1),
1151     * eglTerminate, then eglInitialize again (without a call to eglReleaseThread
1152     * or eglMakeCurrent(NULL) before that), dri2_dpy structure is still
1153     * initialized, as we need it to be able to free context1 correctly.
1154     *
1155     * It would probably be safest to forcibly release the display with
1156     * dri2_display_release, to make sure the display is reinitialized correctly.
1157     * However, the EGL spec states that we need to keep a reference to the
1158     * current context (so we cannot call dri2_make_current(NULL)), and therefore
1159     * we would leak context1 as we would be missing the old display connection
1160     * to free it up correctly.
1161     */
1162    if (dri2_dpy) {
1163       dri2_dpy->ref_count++;
1164       return EGL_TRUE;
1165    }
1166
1167    loader_set_logger(_eglLog);
1168
1169    switch (disp->Platform) {
1170    case _EGL_PLATFORM_SURFACELESS:
1171       ret = dri2_initialize_surfaceless(disp);
1172       break;
1173    case _EGL_PLATFORM_DEVICE:
1174       ret = dri2_initialize_device(disp);
1175       break;
1176    case _EGL_PLATFORM_X11:
1177    case _EGL_PLATFORM_XCB:
1178       ret = dri2_initialize_x11(disp);
1179       break;
1180    case _EGL_PLATFORM_DRM:
1181       ret = dri2_initialize_drm(disp);
1182       break;
1183    case _EGL_PLATFORM_WAYLAND:
1184       ret = dri2_initialize_wayland(disp);
1185       break;
1186    case _EGL_PLATFORM_ANDROID:
1187       ret = dri2_initialize_android(disp);
1188       break;
1189    default:
1190       unreachable("Callers ensure we cannot get here.");
1191       return EGL_FALSE;
1192    }
1193
1194    if (!ret)
1195       return EGL_FALSE;
1196
1197    dri2_dpy = dri2_egl_display(disp);
1198    dri2_dpy->ref_count++;
1199
1200    return EGL_TRUE;
1201 }
1202
1203 /**
1204  * Decrement display reference count, and free up display if necessary.
1205  */
1206 static void
1207 dri2_display_release(_EGLDisplay *disp)
1208 {
1209    struct dri2_egl_display *dri2_dpy;
1210
1211    if (!disp)
1212       return;
1213
1214    dri2_dpy = dri2_egl_display(disp);
1215
1216    assert(dri2_dpy->ref_count > 0);
1217    dri2_dpy->ref_count--;
1218
1219    if (dri2_dpy->ref_count > 0)
1220       return;
1221
1222    _eglCleanupDisplay(disp);
1223    dri2_display_destroy(disp);
1224 }
1225
1226 void
1227 dri2_display_destroy(_EGLDisplay *disp)
1228 {
1229    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1230
1231    if (dri2_dpy->own_dri_screen) {
1232       if (dri2_dpy->vtbl && dri2_dpy->vtbl->close_screen_notify)
1233          dri2_dpy->vtbl->close_screen_notify(disp);
1234       dri2_dpy->core->destroyScreen(dri2_dpy->dri_screen);
1235    }
1236    if (dri2_dpy->fd >= 0)
1237       close(dri2_dpy->fd);
1238
1239    /* Don't dlclose the driver when building with the address sanitizer, so you
1240     * get good symbols from the leak reports.
1241     */
1242 #if !BUILT_WITH_ASAN || defined(NDEBUG)
1243    if (dri2_dpy->driver)
1244       dlclose(dri2_dpy->driver);
1245 #endif
1246
1247    free(dri2_dpy->driver_name);
1248
1249 #ifdef HAVE_WAYLAND_PLATFORM
1250    free(dri2_dpy->device_name);
1251 #endif
1252
1253    switch (disp->Platform) {
1254    case _EGL_PLATFORM_X11:
1255       dri2_teardown_x11(dri2_dpy);
1256       break;
1257    case _EGL_PLATFORM_DRM:
1258       dri2_teardown_drm(dri2_dpy);
1259       break;
1260    case _EGL_PLATFORM_WAYLAND:
1261       dri2_teardown_wayland(dri2_dpy);
1262       break;
1263    default:
1264       /* TODO: add teardown for other platforms */
1265       break;
1266    }
1267
1268    /* The drm platform does not create the screen/driver_configs but reuses
1269     * the ones from the gbm device. As such the gbm itself is responsible
1270     * for the cleanup.
1271     */
1272    if (disp->Platform != _EGL_PLATFORM_DRM && dri2_dpy->driver_configs) {
1273       for (unsigned i = 0; dri2_dpy->driver_configs[i]; i++)
1274          free((__DRIconfig *) dri2_dpy->driver_configs[i]);
1275       free(dri2_dpy->driver_configs);
1276    }
1277    free(dri2_dpy);
1278    disp->DriverData = NULL;
1279 }
1280
1281 __DRIbuffer *
1282 dri2_egl_surface_alloc_local_buffer(struct dri2_egl_surface *dri2_surf,
1283                                     unsigned int att, unsigned int format)
1284 {
1285    struct dri2_egl_display *dri2_dpy =
1286       dri2_egl_display(dri2_surf->base.Resource.Display);
1287
1288    if (att >= ARRAY_SIZE(dri2_surf->local_buffers))
1289       return NULL;
1290
1291    if (!dri2_surf->local_buffers[att]) {
1292       dri2_surf->local_buffers[att] =
1293          dri2_dpy->dri2->allocateBuffer(dri2_dpy->dri_screen, att, format,
1294                                         dri2_surf->base.Width, dri2_surf->base.Height);
1295    }
1296
1297    return dri2_surf->local_buffers[att];
1298 }
1299
1300 void
1301 dri2_egl_surface_free_local_buffers(struct dri2_egl_surface *dri2_surf)
1302 {
1303    struct dri2_egl_display *dri2_dpy =
1304       dri2_egl_display(dri2_surf->base.Resource.Display);
1305
1306    for (int i = 0; i < ARRAY_SIZE(dri2_surf->local_buffers); i++) {
1307       if (dri2_surf->local_buffers[i]) {
1308          dri2_dpy->dri2->releaseBuffer(dri2_dpy->dri_screen,
1309                                        dri2_surf->local_buffers[i]);
1310          dri2_surf->local_buffers[i] = NULL;
1311       }
1312    }
1313 }
1314
1315 /**
1316  * Called via eglTerminate(), drv->Terminate().
1317  *
1318  * This must be guaranteed to be called exactly once, even if eglTerminate is
1319  * called many times (without a eglInitialize in between).
1320  */
1321 static EGLBoolean
1322 dri2_terminate(_EGLDisplay *disp)
1323 {
1324    /* Release all non-current Context/Surfaces. */
1325    _eglReleaseDisplayResources(disp);
1326
1327    dri2_display_release(disp);
1328
1329    return EGL_TRUE;
1330 }
1331
1332 /**
1333  * Set the error code after a call to
1334  * dri2_egl_display::dri2::createContextAttribs.
1335  */
1336 static void
1337 dri2_create_context_attribs_error(int dri_error)
1338 {
1339    EGLint egl_error;
1340
1341    switch (dri_error) {
1342    case __DRI_CTX_ERROR_SUCCESS:
1343       return;
1344
1345    case __DRI_CTX_ERROR_NO_MEMORY:
1346       egl_error = EGL_BAD_ALLOC;
1347       break;
1348
1349   /* From the EGL_KHR_create_context spec, section "Errors":
1350    *
1351    *   * If <config> does not support a client API context compatible
1352    *     with the requested API major and minor version, [...] context flags,
1353    *     and context reset notification behavior (for client API types where
1354    *     these attributes are supported), then an EGL_BAD_MATCH error is
1355    *     generated.
1356    *
1357    *   * If an OpenGL ES context is requested and the values for
1358    *     attributes EGL_CONTEXT_MAJOR_VERSION_KHR and
1359    *     EGL_CONTEXT_MINOR_VERSION_KHR specify an OpenGL ES version that
1360    *     is not defined, than an EGL_BAD_MATCH error is generated.
1361    *
1362    *   * If an OpenGL context is requested, the requested version is
1363    *     greater than 3.2, and the value for attribute
1364    *     EGL_CONTEXT_OPENGL_PROFILE_MASK_KHR has no bits set; has any
1365    *     bits set other than EGL_CONTEXT_OPENGL_CORE_PROFILE_BIT_KHR and
1366    *     EGL_CONTEXT_OPENGL_COMPATIBILITY_PROFILE_BIT_KHR; has more than
1367    *     one of these bits set; or if the implementation does not support
1368    *     the requested profile, then an EGL_BAD_MATCH error is generated.
1369    */
1370    case __DRI_CTX_ERROR_BAD_API:
1371    case __DRI_CTX_ERROR_BAD_VERSION:
1372    case __DRI_CTX_ERROR_BAD_FLAG:
1373       egl_error = EGL_BAD_MATCH;
1374       break;
1375
1376   /* From the EGL_KHR_create_context spec, section "Errors":
1377    *
1378    *   * If an attribute name or attribute value in <attrib_list> is not
1379    *     recognized (including unrecognized bits in bitmask attributes),
1380    *     then an EGL_BAD_ATTRIBUTE error is generated."
1381    */
1382    case __DRI_CTX_ERROR_UNKNOWN_ATTRIBUTE:
1383    case __DRI_CTX_ERROR_UNKNOWN_FLAG:
1384       egl_error = EGL_BAD_ATTRIBUTE;
1385       break;
1386
1387    default:
1388       assert(!"unknown dri_error code");
1389       egl_error = EGL_BAD_MATCH;
1390       break;
1391    }
1392
1393    _eglError(egl_error, "dri2_create_context");
1394 }
1395
1396 static bool
1397 dri2_fill_context_attribs(struct dri2_egl_context *dri2_ctx,
1398                           struct dri2_egl_display *dri2_dpy,
1399                           uint32_t *ctx_attribs,
1400                           unsigned *num_attribs)
1401 {
1402    int pos = 0;
1403
1404    assert(*num_attribs >= NUM_ATTRIBS);
1405
1406    ctx_attribs[pos++] = __DRI_CTX_ATTRIB_MAJOR_VERSION;
1407    ctx_attribs[pos++] = dri2_ctx->base.ClientMajorVersion;
1408    ctx_attribs[pos++] = __DRI_CTX_ATTRIB_MINOR_VERSION;
1409    ctx_attribs[pos++] = dri2_ctx->base.ClientMinorVersion;
1410
1411    if (dri2_ctx->base.Flags != 0 || dri2_ctx->base.NoError) {
1412       /* If the implementation doesn't support the __DRI2_ROBUSTNESS
1413        * extension, don't even try to send it the robust-access flag.
1414        * It may explode.  Instead, generate the required EGL error here.
1415        */
1416       if ((dri2_ctx->base.Flags & EGL_CONTEXT_OPENGL_ROBUST_ACCESS_BIT_KHR) != 0
1417             && !dri2_dpy->robustness) {
1418          _eglError(EGL_BAD_MATCH, "eglCreateContext");
1419          return false;
1420       }
1421
1422       ctx_attribs[pos++] = __DRI_CTX_ATTRIB_FLAGS;
1423       ctx_attribs[pos++] = dri2_ctx->base.Flags |
1424          (dri2_ctx->base.NoError ? __DRI_CTX_FLAG_NO_ERROR : 0);
1425    }
1426
1427    if (dri2_ctx->base.ResetNotificationStrategy != EGL_NO_RESET_NOTIFICATION_KHR) {
1428       /* If the implementation doesn't support the __DRI2_ROBUSTNESS
1429        * extension, don't even try to send it a reset strategy.  It may
1430        * explode.  Instead, generate the required EGL error here.
1431        */
1432       if (!dri2_dpy->robustness) {
1433          _eglError(EGL_BAD_CONFIG, "eglCreateContext");
1434          return false;
1435       }
1436
1437       ctx_attribs[pos++] = __DRI_CTX_ATTRIB_RESET_STRATEGY;
1438       ctx_attribs[pos++] = __DRI_CTX_RESET_LOSE_CONTEXT;
1439    }
1440
1441    if (dri2_ctx->base.ContextPriority != EGL_CONTEXT_PRIORITY_MEDIUM_IMG) {
1442       unsigned val;
1443
1444       switch (dri2_ctx->base.ContextPriority) {
1445       case EGL_CONTEXT_PRIORITY_HIGH_IMG:
1446          val = __DRI_CTX_PRIORITY_HIGH;
1447          break;
1448       case EGL_CONTEXT_PRIORITY_MEDIUM_IMG:
1449          val = __DRI_CTX_PRIORITY_MEDIUM;
1450          break;
1451       case EGL_CONTEXT_PRIORITY_LOW_IMG:
1452          val = __DRI_CTX_PRIORITY_LOW;
1453          break;
1454       default:
1455          _eglError(EGL_BAD_CONFIG, "eglCreateContext");
1456          return false;
1457       }
1458
1459       ctx_attribs[pos++] = __DRI_CTX_ATTRIB_PRIORITY;
1460       ctx_attribs[pos++] = val;
1461    }
1462
1463    if (dri2_ctx->base.ReleaseBehavior == EGL_CONTEXT_RELEASE_BEHAVIOR_NONE_KHR) {
1464       ctx_attribs[pos++] = __DRI_CTX_ATTRIB_RELEASE_BEHAVIOR;
1465       ctx_attribs[pos++] = __DRI_CTX_RELEASE_BEHAVIOR_NONE;
1466    }
1467
1468    *num_attribs = pos;
1469
1470    return true;
1471 }
1472
1473 /**
1474  * Called via eglCreateContext(), drv->CreateContext().
1475  */
1476 static _EGLContext *
1477 dri2_create_context(_EGLDisplay *disp, _EGLConfig *conf,
1478                     _EGLContext *share_list, const EGLint *attrib_list)
1479 {
1480    struct dri2_egl_context *dri2_ctx;
1481    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1482    struct dri2_egl_context *dri2_ctx_shared = dri2_egl_context(share_list);
1483    __DRIcontext *shared =
1484       dri2_ctx_shared ? dri2_ctx_shared->dri_context : NULL;
1485    struct dri2_egl_config *dri2_config = dri2_egl_config(conf);
1486    const __DRIconfig *dri_config;
1487    int api;
1488    unsigned error;
1489    unsigned num_attribs = NUM_ATTRIBS;
1490    uint32_t ctx_attribs[NUM_ATTRIBS];
1491
1492    dri2_ctx = malloc(sizeof *dri2_ctx);
1493    if (!dri2_ctx) {
1494       _eglError(EGL_BAD_ALLOC, "eglCreateContext");
1495       return NULL;
1496    }
1497
1498    if (!_eglInitContext(&dri2_ctx->base, disp, conf, attrib_list))
1499       goto cleanup;
1500
1501    /* The EGL_EXT_create_context_robustness spec says:
1502     *
1503     *    "Add to the eglCreateContext context creation errors: [...]
1504     *
1505     *     * If the reset notification behavior of <share_context> and the
1506     *       newly created context are different then an EGL_BAD_MATCH error is
1507     *       generated."
1508     */
1509    if (share_list && share_list->ResetNotificationStrategy !=
1510                      dri2_ctx->base.ResetNotificationStrategy) {
1511       _eglError(EGL_BAD_MATCH, "eglCreateContext");
1512       goto cleanup;
1513    }
1514
1515    /* The EGL_KHR_create_context_no_error spec says:
1516     *
1517     *    "BAD_MATCH is generated if the value of EGL_CONTEXT_OPENGL_NO_ERROR_KHR
1518     *    used to create <share_context> does not match the value of
1519     *    EGL_CONTEXT_OPENGL_NO_ERROR_KHR for the context being created."
1520     */
1521    if (share_list && share_list->NoError != dri2_ctx->base.NoError) {
1522       _eglError(EGL_BAD_MATCH, "eglCreateContext");
1523       goto cleanup;
1524    }
1525
1526    switch (dri2_ctx->base.ClientAPI) {
1527    case EGL_OPENGL_ES_API:
1528       switch (dri2_ctx->base.ClientMajorVersion) {
1529       case 1:
1530          api = __DRI_API_GLES;
1531          break;
1532       case 2:
1533          api = __DRI_API_GLES2;
1534          break;
1535       case 3:
1536          api = __DRI_API_GLES3;
1537          break;
1538       default:
1539          _eglError(EGL_BAD_PARAMETER, "eglCreateContext");
1540          free(dri2_ctx);
1541          return NULL;
1542       }
1543       break;
1544    case EGL_OPENGL_API:
1545       if ((dri2_ctx->base.ClientMajorVersion >= 4
1546            || (dri2_ctx->base.ClientMajorVersion == 3
1547                && dri2_ctx->base.ClientMinorVersion >= 2))
1548           && dri2_ctx->base.Profile == EGL_CONTEXT_OPENGL_CORE_PROFILE_BIT_KHR)
1549          api = __DRI_API_OPENGL_CORE;
1550       else if (dri2_ctx->base.ClientMajorVersion == 3 &&
1551                dri2_ctx->base.ClientMinorVersion == 1)
1552          api = __DRI_API_OPENGL_CORE;
1553       else
1554          api = __DRI_API_OPENGL;
1555       break;
1556    default:
1557       _eglError(EGL_BAD_PARAMETER, "eglCreateContext");
1558       free(dri2_ctx);
1559       return NULL;
1560    }
1561
1562    if (conf != NULL) {
1563       /* The config chosen here isn't necessarily
1564        * used for surfaces later.
1565        * A pixmap surface will use the single config.
1566        * This opportunity depends on disabling the
1567        * doubleBufferMode check in
1568        * src/mesa/main/context.c:check_compatible()
1569        */
1570       if (dri2_config->dri_config[1][0])
1571          dri_config = dri2_config->dri_config[1][0];
1572       else
1573          dri_config = dri2_config->dri_config[0][0];
1574    }
1575    else
1576       dri_config = NULL;
1577
1578    if (!dri2_fill_context_attribs(dri2_ctx, dri2_dpy, ctx_attribs,
1579                                   &num_attribs))
1580       goto cleanup;
1581
1582    if (dri2_dpy->image_driver) {
1583       dri2_ctx->dri_context =
1584          dri2_dpy->image_driver->createContextAttribs(dri2_dpy->dri_screen,
1585                                                       api,
1586                                                       dri_config,
1587                                                       shared,
1588                                                       num_attribs / 2,
1589                                                       ctx_attribs,
1590                                                       & error,
1591                                                       dri2_ctx);
1592       dri2_create_context_attribs_error(error);
1593    } else if (dri2_dpy->dri2) {
1594       if (dri2_dpy->dri2->base.version >= 3) {
1595          dri2_ctx->dri_context =
1596             dri2_dpy->dri2->createContextAttribs(dri2_dpy->dri_screen,
1597                                                  api,
1598                                                  dri_config,
1599                                                  shared,
1600                                                  num_attribs / 2,
1601                                                  ctx_attribs,
1602                                                  & error,
1603                                                  dri2_ctx);
1604          dri2_create_context_attribs_error(error);
1605       } else {
1606          dri2_ctx->dri_context =
1607             dri2_dpy->dri2->createNewContextForAPI(dri2_dpy->dri_screen,
1608                                                    api,
1609                                                    dri_config,
1610                                                    shared,
1611                                                    dri2_ctx);
1612       }
1613    } else {
1614       assert(dri2_dpy->swrast);
1615       if (dri2_dpy->swrast->base.version >= 3) {
1616          dri2_ctx->dri_context =
1617             dri2_dpy->swrast->createContextAttribs(dri2_dpy->dri_screen,
1618                                                    api,
1619                                                    dri_config,
1620                                                    shared,
1621                                                    num_attribs / 2,
1622                                                    ctx_attribs,
1623                                                    & error,
1624                                                    dri2_ctx);
1625          dri2_create_context_attribs_error(error);
1626       } else {
1627          dri2_ctx->dri_context =
1628             dri2_dpy->swrast->createNewContextForAPI(dri2_dpy->dri_screen,
1629                                                      api,
1630                                                      dri_config,
1631                                                      shared,
1632                                                      dri2_ctx);
1633       }
1634    }
1635
1636    if (!dri2_ctx->dri_context)
1637       goto cleanup;
1638
1639    return &dri2_ctx->base;
1640
1641  cleanup:
1642    free(dri2_ctx);
1643    return NULL;
1644 }
1645
1646 /**
1647  * Called via eglDestroyContext(), drv->DestroyContext().
1648  */
1649 static EGLBoolean
1650 dri2_destroy_context(_EGLDisplay *disp, _EGLContext *ctx)
1651 {
1652    struct dri2_egl_context *dri2_ctx = dri2_egl_context(ctx);
1653    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1654
1655    if (_eglPutContext(ctx)) {
1656       dri2_dpy->core->destroyContext(dri2_ctx->dri_context);
1657       free(dri2_ctx);
1658    }
1659
1660    return EGL_TRUE;
1661 }
1662
1663 EGLBoolean
1664 dri2_init_surface(_EGLSurface *surf, _EGLDisplay *disp, EGLint type,
1665         _EGLConfig *conf, const EGLint *attrib_list,
1666         EGLBoolean enable_out_fence, void *native_surface)
1667 {
1668    struct dri2_egl_surface *dri2_surf = dri2_egl_surface(surf);
1669    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1670
1671    dri2_surf->out_fence_fd = -1;
1672    dri2_surf->enable_out_fence = false;
1673    if (dri2_dpy->fence && dri2_dpy->fence->base.version >= 2 &&
1674        dri2_dpy->fence->get_capabilities &&
1675        (dri2_dpy->fence->get_capabilities(dri2_dpy->dri_screen) &
1676         __DRI_FENCE_CAP_NATIVE_FD)) {
1677       dri2_surf->enable_out_fence = enable_out_fence;
1678    }
1679
1680    return _eglInitSurface(surf, disp, type, conf, attrib_list, native_surface);
1681 }
1682
1683 static void
1684 dri2_surface_set_out_fence_fd( _EGLSurface *surf, int fence_fd)
1685 {
1686    struct dri2_egl_surface *dri2_surf = dri2_egl_surface(surf);
1687
1688    if (dri2_surf->out_fence_fd >= 0)
1689       close(dri2_surf->out_fence_fd);
1690
1691    dri2_surf->out_fence_fd = fence_fd;
1692 }
1693
1694 void
1695 dri2_fini_surface(_EGLSurface *surf)
1696 {
1697    struct dri2_egl_surface *dri2_surf = dri2_egl_surface(surf);
1698
1699    dri2_surface_set_out_fence_fd(surf, -1);
1700    dri2_surf->enable_out_fence = false;
1701 }
1702
1703 static EGLBoolean
1704 dri2_destroy_surface(_EGLDisplay *disp, _EGLSurface *surf)
1705 {
1706    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1707
1708    if (!_eglPutSurface(surf))
1709       return EGL_TRUE;
1710
1711    return dri2_dpy->vtbl->destroy_surface(disp, surf);
1712 }
1713
1714 static void
1715 dri2_surf_update_fence_fd(_EGLContext *ctx,
1716                           _EGLDisplay *disp, _EGLSurface *surf)
1717 {
1718    __DRIcontext *dri_ctx = dri2_egl_context(ctx)->dri_context;
1719    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1720    struct dri2_egl_surface *dri2_surf = dri2_egl_surface(surf);
1721    int fence_fd = -1;
1722    void *fence;
1723
1724    if (!dri2_surf->enable_out_fence)
1725       return;
1726
1727    fence = dri2_dpy->fence->create_fence_fd(dri_ctx, -1);
1728    if (fence) {
1729       fence_fd = dri2_dpy->fence->get_fence_fd(dri2_dpy->dri_screen,
1730                                                fence);
1731       dri2_dpy->fence->destroy_fence(dri2_dpy->dri_screen, fence);
1732    }
1733    dri2_surface_set_out_fence_fd(surf, fence_fd);
1734 }
1735
1736 EGLBoolean
1737 dri2_create_drawable(struct dri2_egl_display *dri2_dpy,
1738                      const __DRIconfig *config,
1739                      struct dri2_egl_surface *dri2_surf,
1740                      void *loaderPrivate)
1741 {
1742    __DRIcreateNewDrawableFunc createNewDrawable;
1743
1744    if (dri2_dpy->image_driver)
1745       createNewDrawable = dri2_dpy->image_driver->createNewDrawable;
1746    else if (dri2_dpy->dri2)
1747       createNewDrawable = dri2_dpy->dri2->createNewDrawable;
1748    else if (dri2_dpy->swrast)
1749       createNewDrawable = dri2_dpy->swrast->createNewDrawable;
1750    else
1751       return _eglError(EGL_BAD_ALLOC, "no createNewDrawable");
1752
1753    dri2_surf->dri_drawable = createNewDrawable(dri2_dpy->dri_screen,
1754                                                config, loaderPrivate);
1755    if (dri2_surf->dri_drawable == NULL)
1756       return _eglError(EGL_BAD_ALLOC, "createNewDrawable");
1757
1758    return EGL_TRUE;
1759 }
1760
1761 /**
1762  * Called via eglMakeCurrent(), drv->MakeCurrent().
1763  */
1764 static EGLBoolean
1765 dri2_make_current(_EGLDisplay *disp, _EGLSurface *dsurf,
1766                   _EGLSurface *rsurf, _EGLContext *ctx)
1767 {
1768    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1769    struct dri2_egl_context *dri2_ctx = dri2_egl_context(ctx);
1770    _EGLDisplay *old_disp = NULL;
1771    struct dri2_egl_display *old_dri2_dpy = NULL;
1772    _EGLContext *old_ctx;
1773    _EGLSurface *old_dsurf, *old_rsurf;
1774    _EGLSurface *tmp_dsurf, *tmp_rsurf;
1775    __DRIdrawable *ddraw, *rdraw;
1776    __DRIcontext *cctx;
1777    EGLint egl_error = EGL_SUCCESS;
1778
1779    if (!dri2_dpy)
1780       return _eglError(EGL_NOT_INITIALIZED, "eglMakeCurrent");
1781
1782    /* make new bindings, set the EGL error otherwise */
1783    if (!_eglBindContext(ctx, dsurf, rsurf, &old_ctx, &old_dsurf, &old_rsurf))
1784       return EGL_FALSE;
1785
1786    if (old_ctx) {
1787       __DRIcontext *old_cctx = dri2_egl_context(old_ctx)->dri_context;
1788       old_disp = old_ctx->Resource.Display;
1789       old_dri2_dpy = dri2_egl_display(old_disp);
1790
1791       /* Disable shared buffer mode */
1792       if (old_dsurf && _eglSurfaceInSharedBufferMode(old_dsurf) &&
1793           old_dri2_dpy->vtbl->set_shared_buffer_mode) {
1794          old_dri2_dpy->vtbl->set_shared_buffer_mode(old_disp, old_dsurf, false);
1795       }
1796
1797       dri2_dpy->core->unbindContext(old_cctx);
1798
1799       if (old_dsurf)
1800          dri2_surf_update_fence_fd(old_ctx, disp, old_dsurf);
1801    }
1802
1803    ddraw = (dsurf) ? dri2_dpy->vtbl->get_dri_drawable(dsurf) : NULL;
1804    rdraw = (rsurf) ? dri2_dpy->vtbl->get_dri_drawable(rsurf) : NULL;
1805    cctx = (dri2_ctx) ? dri2_ctx->dri_context : NULL;
1806
1807    if (cctx || ddraw || rdraw) {
1808       if (!dri2_dpy->core->bindContext(cctx, ddraw, rdraw)) {
1809          _EGLContext *tmp_ctx;
1810
1811          /* dri2_dpy->core->bindContext failed. We cannot tell for sure why, but
1812           * setting the error to EGL_BAD_MATCH is surely better than leaving it
1813           * as EGL_SUCCESS.
1814           */
1815          egl_error = EGL_BAD_MATCH;
1816
1817          /* undo the previous _eglBindContext */
1818          _eglBindContext(old_ctx, old_dsurf, old_rsurf, &ctx, &tmp_dsurf, &tmp_rsurf);
1819          assert(&dri2_ctx->base == ctx &&
1820                 tmp_dsurf == dsurf &&
1821                 tmp_rsurf == rsurf);
1822
1823          _eglPutSurface(dsurf);
1824          _eglPutSurface(rsurf);
1825          _eglPutContext(ctx);
1826
1827          _eglPutSurface(old_dsurf);
1828          _eglPutSurface(old_rsurf);
1829          _eglPutContext(old_ctx);
1830
1831          ddraw = (old_dsurf) ? dri2_dpy->vtbl->get_dri_drawable(old_dsurf) : NULL;
1832          rdraw = (old_rsurf) ? dri2_dpy->vtbl->get_dri_drawable(old_rsurf) : NULL;
1833          cctx = (old_ctx) ? dri2_egl_context(old_ctx)->dri_context : NULL;
1834
1835          /* undo the previous dri2_dpy->core->unbindContext */
1836          if (dri2_dpy->core->bindContext(cctx, ddraw, rdraw)) {
1837             if (old_dsurf && _eglSurfaceInSharedBufferMode(old_dsurf) &&
1838                 old_dri2_dpy->vtbl->set_shared_buffer_mode) {
1839                old_dri2_dpy->vtbl->set_shared_buffer_mode(old_disp, old_dsurf, true);
1840             }
1841
1842             return _eglError(egl_error, "eglMakeCurrent");
1843          }
1844
1845          /* We cannot restore the same state as it was before calling
1846           * eglMakeCurrent() and the spec isn't clear about what to do. We
1847           * can prevent EGL from calling into the DRI driver with no DRI
1848           * context bound.
1849           */
1850          dsurf = rsurf = NULL;
1851          ctx = NULL;
1852
1853          _eglBindContext(ctx, dsurf, rsurf, &tmp_ctx, &tmp_dsurf, &tmp_rsurf);
1854          assert(tmp_ctx == old_ctx && tmp_dsurf == old_dsurf &&
1855                 tmp_rsurf == old_rsurf);
1856
1857          _eglLog(_EGL_WARNING, "DRI2: failed to rebind the previous context");
1858       } else {
1859          /* dri2_dpy->core->bindContext succeeded, so take a reference on the
1860           * dri2_dpy. This prevents dri2_dpy from being reinitialized when a
1861           * EGLDisplay is terminated and then initialized again while a
1862           * context is still bound. See dri2_intitialize() for a more in depth
1863           * explanation. */
1864          dri2_dpy->ref_count++;
1865       }
1866    }
1867
1868    dri2_destroy_surface(disp, old_dsurf);
1869    dri2_destroy_surface(disp, old_rsurf);
1870
1871    if (old_ctx) {
1872       dri2_destroy_context(disp, old_ctx);
1873       dri2_display_release(old_disp);
1874    }
1875
1876    if (egl_error != EGL_SUCCESS)
1877       return _eglError(egl_error, "eglMakeCurrent");
1878
1879    if (dsurf && _eglSurfaceHasMutableRenderBuffer(dsurf) &&
1880        dri2_dpy->vtbl->set_shared_buffer_mode) {
1881       /* Always update the shared buffer mode. This is obviously needed when
1882        * the active EGL_RENDER_BUFFER is EGL_SINGLE_BUFFER. When
1883        * EGL_RENDER_BUFFER is EGL_BACK_BUFFER, the update protects us in the
1884        * case where external non-EGL API may have changed window's shared
1885        * buffer mode since we last saw it.
1886        */
1887       bool mode = (dsurf->ActiveRenderBuffer == EGL_SINGLE_BUFFER);
1888       dri2_dpy->vtbl->set_shared_buffer_mode(disp, dsurf, mode);
1889    }
1890
1891    return EGL_TRUE;
1892 }
1893
1894 __DRIdrawable *
1895 dri2_surface_get_dri_drawable(_EGLSurface *surf)
1896 {
1897    struct dri2_egl_surface *dri2_surf = dri2_egl_surface(surf);
1898
1899    return dri2_surf->dri_drawable;
1900 }
1901
1902 /*
1903  * Called from eglGetProcAddress() via drv->GetProcAddress().
1904  */
1905 static _EGLProc
1906 dri2_get_proc_address(const char *procname)
1907 {
1908    return _glapi_get_proc_address(procname);
1909 }
1910
1911 static _EGLSurface*
1912 dri2_create_window_surface(_EGLDisplay *disp, _EGLConfig *conf,
1913                            void *native_window, const EGLint *attrib_list)
1914 {
1915    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1916    return dri2_dpy->vtbl->create_window_surface(disp, conf, native_window,
1917                                                 attrib_list);
1918 }
1919
1920 static _EGLSurface*
1921 dri2_create_pixmap_surface(_EGLDisplay *disp, _EGLConfig *conf,
1922                            void *native_pixmap, const EGLint *attrib_list)
1923 {
1924    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1925    if (!dri2_dpy->vtbl->create_pixmap_surface)
1926       return NULL;
1927    return dri2_dpy->vtbl->create_pixmap_surface(disp, conf, native_pixmap,
1928                                                 attrib_list);
1929 }
1930
1931 static _EGLSurface*
1932 dri2_create_pbuffer_surface(_EGLDisplay *disp, _EGLConfig *conf,
1933                             const EGLint *attrib_list)
1934 {
1935    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1936    if (!dri2_dpy->vtbl->create_pbuffer_surface)
1937       return NULL;
1938    return dri2_dpy->vtbl->create_pbuffer_surface(disp, conf, attrib_list);
1939 }
1940
1941 static EGLBoolean
1942 dri2_swap_interval(_EGLDisplay *disp, _EGLSurface *surf, EGLint interval)
1943 {
1944    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1945    if (!dri2_dpy->vtbl->swap_interval)
1946       return EGL_TRUE;
1947    return dri2_dpy->vtbl->swap_interval(disp, surf, interval);
1948 }
1949
1950 /**
1951  * Asks the client API to flush any rendering to the drawable so that we can
1952  * do our swapbuffers.
1953  */
1954 void
1955 dri2_flush_drawable_for_swapbuffers(_EGLDisplay *disp, _EGLSurface *draw)
1956 {
1957    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1958    __DRIdrawable *dri_drawable = dri2_dpy->vtbl->get_dri_drawable(draw);
1959
1960    if (dri2_dpy->flush) {
1961       if (dri2_dpy->flush->base.version >= 4) {
1962          /* We know there's a current context because:
1963           *
1964           *     "If surface is not bound to the calling thread’s current
1965           *      context, an EGL_BAD_SURFACE error is generated."
1966          */
1967          _EGLContext *ctx = _eglGetCurrentContext();
1968          struct dri2_egl_context *dri2_ctx = dri2_egl_context(ctx);
1969
1970          /* From the EGL 1.4 spec (page 52):
1971           *
1972           *     "The contents of ancillary buffers are always undefined
1973           *      after calling eglSwapBuffers."
1974           */
1975          dri2_dpy->flush->flush_with_flags(dri2_ctx->dri_context,
1976                                            dri_drawable,
1977                                            __DRI2_FLUSH_DRAWABLE |
1978                                            __DRI2_FLUSH_INVALIDATE_ANCILLARY,
1979                                            __DRI2_THROTTLE_SWAPBUFFER);
1980       } else {
1981          dri2_dpy->flush->flush(dri_drawable);
1982       }
1983    }
1984 }
1985
1986 static EGLBoolean
1987 dri2_swap_buffers(_EGLDisplay *disp, _EGLSurface *surf)
1988 {
1989    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1990    __DRIdrawable *dri_drawable = dri2_dpy->vtbl->get_dri_drawable(surf);
1991    _EGLContext *ctx = _eglGetCurrentContext();
1992    EGLBoolean ret;
1993
1994    if (ctx && surf)
1995       dri2_surf_update_fence_fd(ctx, disp, surf);
1996    ret = dri2_dpy->vtbl->swap_buffers(disp, surf);
1997
1998    /* SwapBuffers marks the end of the frame; reset the damage region for
1999     * use again next time.
2000     */
2001    if (ret && dri2_dpy->buffer_damage &&
2002        dri2_dpy->buffer_damage->set_damage_region)
2003       dri2_dpy->buffer_damage->set_damage_region(dri_drawable, 0, NULL);
2004
2005    return ret;
2006 }
2007
2008 static EGLBoolean
2009 dri2_swap_buffers_with_damage(_EGLDisplay *disp, _EGLSurface *surf,
2010                               const EGLint *rects, EGLint n_rects)
2011 {
2012    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
2013    __DRIdrawable *dri_drawable = dri2_dpy->vtbl->get_dri_drawable(surf);
2014    _EGLContext *ctx = _eglGetCurrentContext();
2015    EGLBoolean ret;
2016
2017    if (ctx && surf)
2018       dri2_surf_update_fence_fd(ctx, disp, surf);
2019    if (dri2_dpy->vtbl->swap_buffers_with_damage)
2020       ret = dri2_dpy->vtbl->swap_buffers_with_damage(disp, surf,
2021                                                      rects, n_rects);
2022    else
2023       ret = dri2_dpy->vtbl->swap_buffers(disp, surf);
2024
2025    /* SwapBuffers marks the end of the frame; reset the damage region for
2026     * use again next time.
2027     */
2028    if (ret && dri2_dpy->buffer_damage &&
2029        dri2_dpy->buffer_damage->set_damage_region)
2030       dri2_dpy->buffer_damage->set_damage_region(dri_drawable, 0, NULL);
2031
2032    return ret;
2033 }
2034
2035 static EGLBoolean
2036 dri2_swap_buffers_region(_EGLDisplay *disp, _EGLSurface *surf,
2037                          EGLint numRects, const EGLint *rects)
2038 {
2039    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
2040    __DRIdrawable *dri_drawable = dri2_dpy->vtbl->get_dri_drawable(surf);
2041    EGLBoolean ret;
2042
2043    if (!dri2_dpy->vtbl->swap_buffers_region)
2044       return EGL_FALSE;
2045    ret = dri2_dpy->vtbl->swap_buffers_region(disp, surf, numRects, rects);
2046
2047    /* SwapBuffers marks the end of the frame; reset the damage region for
2048     * use again next time.
2049     */
2050    if (ret && dri2_dpy->buffer_damage &&
2051        dri2_dpy->buffer_damage->set_damage_region)
2052       dri2_dpy->buffer_damage->set_damage_region(dri_drawable, 0, NULL);
2053
2054    return ret;
2055 }
2056
2057 static EGLBoolean
2058 dri2_set_damage_region(_EGLDisplay *disp, _EGLSurface *surf,
2059                        EGLint *rects, EGLint n_rects)
2060 {
2061    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
2062    __DRIdrawable *drawable = dri2_dpy->vtbl->get_dri_drawable(surf);
2063
2064    if (!dri2_dpy->buffer_damage || !dri2_dpy->buffer_damage->set_damage_region)
2065       return EGL_FALSE;
2066
2067    dri2_dpy->buffer_damage->set_damage_region(drawable, n_rects, rects);
2068    return EGL_TRUE;
2069 }
2070
2071 static EGLBoolean
2072 dri2_post_sub_buffer(_EGLDisplay *disp, _EGLSurface *surf,
2073                      EGLint x, EGLint y, EGLint width, EGLint height)
2074 {
2075    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
2076    if (!dri2_dpy->vtbl->post_sub_buffer)
2077       return EGL_FALSE;
2078    return dri2_dpy->vtbl->post_sub_buffer(disp, surf, x, y, width, height);
2079 }
2080
2081 static EGLBoolean
2082 dri2_copy_buffers(_EGLDisplay *disp, _EGLSurface *surf, void *native_pixmap_target)
2083 {
2084    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
2085    if (!dri2_dpy->vtbl->copy_buffers)
2086       return _eglError(EGL_BAD_NATIVE_PIXMAP, "no support for native pixmaps");
2087    return dri2_dpy->vtbl->copy_buffers(disp, surf, native_pixmap_target);
2088 }
2089
2090 static EGLint
2091 dri2_query_buffer_age(_EGLDisplay *disp, _EGLSurface *surf)
2092 {
2093    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
2094    if (!dri2_dpy->vtbl->query_buffer_age)
2095       return 0;
2096    return dri2_dpy->vtbl->query_buffer_age(disp, surf);
2097 }
2098
2099 static EGLBoolean
2100 dri2_wait_client(_EGLDisplay *disp, _EGLContext *ctx)
2101 {
2102    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
2103    _EGLSurface *surf = ctx->DrawSurface;
2104    __DRIdrawable *dri_drawable = dri2_dpy->vtbl->get_dri_drawable(surf);
2105
2106    /* FIXME: If EGL allows frontbuffer rendering for window surfaces,
2107     * we need to copy fake to real here.*/
2108
2109    if (dri2_dpy->flush != NULL)
2110       dri2_dpy->flush->flush(dri_drawable);
2111
2112    return EGL_TRUE;
2113 }
2114
2115 static EGLBoolean
2116 dri2_wait_native(EGLint engine)
2117 {
2118    if (engine != EGL_CORE_NATIVE_ENGINE)
2119       return _eglError(EGL_BAD_PARAMETER, "eglWaitNative");
2120    /* glXWaitX(); */
2121
2122    return EGL_TRUE;
2123 }
2124
2125 static EGLBoolean
2126 dri2_bind_tex_image(_EGLDisplay *disp, _EGLSurface *surf, EGLint buffer)
2127 {
2128    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
2129    struct dri2_egl_context *dri2_ctx;
2130    _EGLContext *ctx;
2131    GLint format, target;
2132    __DRIdrawable *dri_drawable = dri2_dpy->vtbl->get_dri_drawable(surf);
2133
2134    ctx = _eglGetCurrentContext();
2135    dri2_ctx = dri2_egl_context(ctx);
2136
2137    if (!_eglBindTexImage(disp, surf, buffer))
2138       return EGL_FALSE;
2139
2140    switch (surf->TextureFormat) {
2141    case EGL_TEXTURE_RGB:
2142       format = __DRI_TEXTURE_FORMAT_RGB;
2143       break;
2144    case EGL_TEXTURE_RGBA:
2145       format = __DRI_TEXTURE_FORMAT_RGBA;
2146       break;
2147    default:
2148       assert(!"Unexpected texture format in dri2_bind_tex_image()");
2149       format = __DRI_TEXTURE_FORMAT_RGBA;
2150    }
2151
2152    switch (surf->TextureTarget) {
2153    case EGL_TEXTURE_2D:
2154       target = GL_TEXTURE_2D;
2155       break;
2156    default:
2157       target = GL_TEXTURE_2D;
2158       assert(!"Unexpected texture target in dri2_bind_tex_image()");
2159    }
2160
2161    dri2_dpy->tex_buffer->setTexBuffer2(dri2_ctx->dri_context,
2162                                        target, format,
2163                                        dri_drawable);
2164
2165    return EGL_TRUE;
2166 }
2167
2168 static EGLBoolean
2169 dri2_release_tex_image(_EGLDisplay *disp, _EGLSurface *surf, EGLint buffer)
2170 {
2171    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
2172    struct dri2_egl_context *dri2_ctx;
2173    _EGLContext *ctx;
2174    GLint  target;
2175    __DRIdrawable *dri_drawable = dri2_dpy->vtbl->get_dri_drawable(surf);
2176
2177    ctx = _eglGetCurrentContext();
2178    dri2_ctx = dri2_egl_context(ctx);
2179
2180    if (!_eglReleaseTexImage(disp, surf, buffer))
2181       return EGL_FALSE;
2182
2183    switch (surf->TextureTarget) {
2184    case EGL_TEXTURE_2D:
2185       target = GL_TEXTURE_2D;
2186       break;
2187    default:
2188       assert(!"missing texture target");
2189    }
2190
2191    if (dri2_dpy->tex_buffer->base.version >= 3 &&
2192        dri2_dpy->tex_buffer->releaseTexBuffer != NULL) {
2193       dri2_dpy->tex_buffer->releaseTexBuffer(dri2_ctx->dri_context,
2194                                              target, dri_drawable);
2195    }
2196
2197    return EGL_TRUE;
2198 }
2199
2200 static _EGLImage*
2201 dri2_create_image(_EGLDisplay *disp, _EGLContext *ctx, EGLenum target,
2202                   EGLClientBuffer buffer, const EGLint *attr_list)
2203 {
2204    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
2205    return dri2_dpy->vtbl->create_image(disp, ctx, target, buffer,
2206                                        attr_list);
2207 }
2208
2209 _EGLImage *
2210 dri2_create_image_from_dri(_EGLDisplay *disp, __DRIimage *dri_image)
2211 {
2212    struct dri2_egl_image *dri2_img;
2213
2214    if (dri_image == NULL) {
2215       _eglError(EGL_BAD_ALLOC, "dri2_create_image");
2216       return NULL;
2217    }
2218
2219    dri2_img = malloc(sizeof *dri2_img);
2220    if (!dri2_img) {
2221       _eglError(EGL_BAD_ALLOC, "dri2_create_image");
2222       return NULL;
2223    }
2224
2225    _eglInitImage(&dri2_img->base, disp);
2226
2227    dri2_img->dri_image = dri_image;
2228
2229    return &dri2_img->base;
2230 }
2231
2232 /**
2233  * Translate a DRI Image extension error code into an EGL error code.
2234  */
2235 static EGLint
2236 egl_error_from_dri_image_error(int dri_error)
2237 {
2238    switch (dri_error) {
2239    case __DRI_IMAGE_ERROR_SUCCESS:
2240       return EGL_SUCCESS;
2241    case __DRI_IMAGE_ERROR_BAD_ALLOC:
2242       return EGL_BAD_ALLOC;
2243    case __DRI_IMAGE_ERROR_BAD_MATCH:
2244       return EGL_BAD_MATCH;
2245    case __DRI_IMAGE_ERROR_BAD_PARAMETER:
2246       return EGL_BAD_PARAMETER;
2247    case __DRI_IMAGE_ERROR_BAD_ACCESS:
2248       return EGL_BAD_ACCESS;
2249    default:
2250       assert(!"unknown dri_error code");
2251       return EGL_BAD_ALLOC;
2252    }
2253 }
2254
2255 static _EGLImage *
2256 dri2_create_image_khr_renderbuffer(_EGLDisplay *disp, _EGLContext *ctx,
2257                                    EGLClientBuffer buffer,
2258                                    const EGLint *attr_list)
2259 {
2260    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
2261    struct dri2_egl_context *dri2_ctx = dri2_egl_context(ctx);
2262    GLuint renderbuffer = (GLuint) (uintptr_t) buffer;
2263    __DRIimage *dri_image;
2264
2265    if (renderbuffer == 0) {
2266       _eglError(EGL_BAD_PARAMETER, "dri2_create_image_khr");
2267       return EGL_NO_IMAGE_KHR;
2268    }
2269
2270    if (!disp->Extensions.KHR_gl_renderbuffer_image) {
2271       _eglError(EGL_BAD_PARAMETER, "dri2_create_image_khr");
2272       return EGL_NO_IMAGE_KHR;
2273    }
2274
2275    if (dri2_dpy->image->base.version >= 17 &&
2276        dri2_dpy->image->createImageFromRenderbuffer2) {
2277       unsigned error = ~0;
2278
2279       dri_image = dri2_dpy->image->createImageFromRenderbuffer2(
2280                dri2_ctx->dri_context, renderbuffer, NULL, &error);
2281
2282       assert(!!dri_image == (error == __DRI_IMAGE_ERROR_SUCCESS));
2283
2284       if (!dri_image) {
2285          _eglError(egl_error_from_dri_image_error(error), "dri2_create_image_khr");
2286          return EGL_NO_IMAGE_KHR;
2287       }
2288    } else {
2289       dri_image = dri2_dpy->image->createImageFromRenderbuffer(
2290                dri2_ctx->dri_context, renderbuffer, NULL);
2291       if (!dri_image) {
2292          _eglError(EGL_BAD_ALLOC, "dri2_create_image_khr");
2293          return EGL_NO_IMAGE_KHR;
2294       }
2295    }
2296
2297    return dri2_create_image_from_dri(disp, dri_image);
2298 }
2299
2300 #ifdef HAVE_WAYLAND_PLATFORM
2301
2302 /* This structure describes how a wl_buffer maps to one or more
2303  * __DRIimages.  A wl_drm_buffer stores the wl_drm format code and the
2304  * offsets and strides of the planes in the buffer.  This table maps a
2305  * wl_drm format code to a description of the planes in the buffer
2306  * that lets us create a __DRIimage for each of the planes. */
2307
2308 static const struct wl_drm_components_descriptor {
2309    uint32_t dri_components;
2310    EGLint components;
2311    int nplanes;
2312 } wl_drm_components[] = {
2313    { __DRI_IMAGE_COMPONENTS_RGB, EGL_TEXTURE_RGB, 1 },
2314    { __DRI_IMAGE_COMPONENTS_RGBA, EGL_TEXTURE_RGBA, 1 },
2315    { __DRI_IMAGE_COMPONENTS_Y_U_V, EGL_TEXTURE_Y_U_V_WL, 3 },
2316    { __DRI_IMAGE_COMPONENTS_Y_UV, EGL_TEXTURE_Y_UV_WL, 2 },
2317    { __DRI_IMAGE_COMPONENTS_Y_XUXV, EGL_TEXTURE_Y_XUXV_WL, 2 },
2318 };
2319
2320 static _EGLImage *
2321 dri2_create_image_wayland_wl_buffer(_EGLDisplay *disp, _EGLContext *ctx,
2322                                     EGLClientBuffer _buffer,
2323                                     const EGLint *attr_list)
2324 {
2325    struct wl_drm_buffer *buffer;
2326    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
2327    const struct wl_drm_components_descriptor *f;
2328    __DRIimage *dri_image;
2329    _EGLImageAttribs attrs;
2330    int32_t plane;
2331
2332    buffer = wayland_drm_buffer_get(dri2_dpy->wl_server_drm,
2333                                    (struct wl_resource *) _buffer);
2334    if (!buffer)
2335        return NULL;
2336
2337    if (!_eglParseImageAttribList(&attrs, disp, attr_list))
2338       return NULL;
2339
2340    plane = attrs.PlaneWL;
2341    f = buffer->driver_format;
2342    if (plane < 0 || plane >= f->nplanes) {
2343       _eglError(EGL_BAD_PARAMETER,
2344                 "dri2_create_image_wayland_wl_buffer (plane out of bounds)");
2345       return NULL;
2346    }
2347
2348    dri_image = dri2_dpy->image->fromPlanar(buffer->driver_buffer, plane, NULL);
2349    if (dri_image == NULL && plane == 0)
2350       dri_image = dri2_dpy->image->dupImage(buffer->driver_buffer, NULL);
2351    if (dri_image == NULL) {
2352       _eglError(EGL_BAD_PARAMETER, "dri2_create_image_wayland_wl_buffer");
2353       return NULL;
2354    }
2355
2356    return dri2_create_image_from_dri(disp, dri_image);
2357 }
2358 #endif
2359
2360 static EGLBoolean
2361 dri2_get_sync_values_chromium(_EGLDisplay *disp, _EGLSurface *surf,
2362                               EGLuint64KHR *ust, EGLuint64KHR *msc,
2363                               EGLuint64KHR *sbc)
2364 {
2365    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
2366    if (!dri2_dpy->vtbl->get_sync_values)
2367       return EGL_FALSE;
2368    return dri2_dpy->vtbl->get_sync_values(disp, surf, ust, msc, sbc);
2369 }
2370
2371 /**
2372  * Set the error code after a call to
2373  * dri2_egl_image::dri_image::createImageFromTexture.
2374  */
2375 static void
2376 dri2_create_image_khr_texture_error(int dri_error)
2377 {
2378    EGLint egl_error = egl_error_from_dri_image_error(dri_error);
2379
2380    if (egl_error != EGL_SUCCESS)
2381       _eglError(egl_error, "dri2_create_image_khr_texture");
2382 }
2383
2384 static _EGLImage *
2385 dri2_create_image_khr_texture(_EGLDisplay *disp, _EGLContext *ctx,
2386                                    EGLenum target,
2387                                    EGLClientBuffer buffer,
2388                                    const EGLint *attr_list)
2389 {
2390    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
2391    struct dri2_egl_context *dri2_ctx = dri2_egl_context(ctx);
2392    struct dri2_egl_image *dri2_img;
2393    GLuint texture = (GLuint) (uintptr_t) buffer;
2394    _EGLImageAttribs attrs;
2395    GLuint depth;
2396    GLenum gl_target;
2397    unsigned error;
2398
2399    if (texture == 0) {
2400       _eglError(EGL_BAD_PARAMETER, "dri2_create_image_khr");
2401       return EGL_NO_IMAGE_KHR;
2402    }
2403
2404    if (!_eglParseImageAttribList(&attrs, disp, attr_list))
2405       return EGL_NO_IMAGE_KHR;
2406
2407    switch (target) {
2408    case EGL_GL_TEXTURE_2D_KHR:
2409       if (!disp->Extensions.KHR_gl_texture_2D_image) {
2410          _eglError(EGL_BAD_PARAMETER, "dri2_create_image_khr");
2411          return EGL_NO_IMAGE_KHR;
2412       }
2413       depth = 0;
2414       gl_target = GL_TEXTURE_2D;
2415       break;
2416    case EGL_GL_TEXTURE_3D_KHR:
2417       if (!disp->Extensions.KHR_gl_texture_3D_image) {
2418          _eglError(EGL_BAD_PARAMETER, "dri2_create_image_khr");
2419          return EGL_NO_IMAGE_KHR;
2420       }
2421
2422       depth = attrs.GLTextureZOffset;
2423       gl_target = GL_TEXTURE_3D;
2424       break;
2425    case EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_X_KHR:
2426    case EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_X_KHR:
2427    case EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_Y_KHR:
2428    case EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_KHR:
2429    case EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_Z_KHR:
2430    case EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_KHR:
2431       if (!disp->Extensions.KHR_gl_texture_cubemap_image) {
2432          _eglError(EGL_BAD_PARAMETER, "dri2_create_image_khr");
2433          return EGL_NO_IMAGE_KHR;
2434       }
2435
2436       depth = target - EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_X_KHR;
2437       gl_target = GL_TEXTURE_CUBE_MAP;
2438       break;
2439    default:
2440       unreachable("Unexpected target in dri2_create_image_khr_texture()");
2441       return EGL_NO_IMAGE_KHR;
2442    }
2443
2444    dri2_img = malloc(sizeof *dri2_img);
2445    if (!dri2_img) {
2446       _eglError(EGL_BAD_ALLOC, "dri2_create_image_khr");
2447       return EGL_NO_IMAGE_KHR;
2448    }
2449
2450    _eglInitImage(&dri2_img->base, disp);
2451
2452    dri2_img->dri_image =
2453       dri2_dpy->image->createImageFromTexture(dri2_ctx->dri_context,
2454                                               gl_target,
2455                                               texture,
2456                                               depth,
2457                                               attrs.GLTextureLevel,
2458                                               &error,
2459                                               NULL);
2460    dri2_create_image_khr_texture_error(error);
2461
2462    if (!dri2_img->dri_image) {
2463       free(dri2_img);
2464       return EGL_NO_IMAGE_KHR;
2465    }
2466    return &dri2_img->base;
2467 }
2468
2469 static EGLBoolean
2470 dri2_query_surface(_EGLDisplay *disp, _EGLSurface *surf,
2471                    EGLint attribute, EGLint *value)
2472 {
2473    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
2474    if (!dri2_dpy->vtbl->query_surface)
2475       return _eglQuerySurface(disp, surf, attribute, value);
2476    return dri2_dpy->vtbl->query_surface(disp, surf, attribute, value);
2477 }
2478
2479 static struct wl_buffer*
2480 dri2_create_wayland_buffer_from_image(_EGLDisplay *disp, _EGLImage *img)
2481 {
2482    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
2483    if (!dri2_dpy->vtbl->create_wayland_buffer_from_image)
2484       return NULL;
2485    return dri2_dpy->vtbl->create_wayland_buffer_from_image(disp, img);
2486 }
2487
2488 #ifdef HAVE_LIBDRM
2489 static _EGLImage *
2490 dri2_create_image_mesa_drm_buffer(_EGLDisplay *disp, _EGLContext *ctx,
2491                                   EGLClientBuffer buffer, const EGLint *attr_list)
2492 {
2493    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
2494    EGLint format, name, pitch;
2495    _EGLImageAttribs attrs;
2496    __DRIimage *dri_image;
2497
2498    name = (EGLint) (uintptr_t) buffer;
2499
2500    if (!_eglParseImageAttribList(&attrs, disp, attr_list))
2501       return NULL;
2502
2503    if (attrs.Width <= 0 || attrs.Height <= 0 ||
2504        attrs.DRMBufferStrideMESA <= 0) {
2505       _eglError(EGL_BAD_PARAMETER,
2506                 "bad width, height or stride");
2507       return NULL;
2508    }
2509
2510    switch (attrs.DRMBufferFormatMESA) {
2511    case EGL_DRM_BUFFER_FORMAT_ARGB32_MESA:
2512       format = __DRI_IMAGE_FORMAT_ARGB8888;
2513       pitch = attrs.DRMBufferStrideMESA;
2514       break;
2515    default:
2516       _eglError(EGL_BAD_PARAMETER,
2517                 "dri2_create_image_khr: unsupported pixmap depth");
2518       return NULL;
2519    }
2520
2521    dri_image =
2522       dri2_dpy->image->createImageFromName(dri2_dpy->dri_screen,
2523                                            attrs.Width,
2524                                            attrs.Height,
2525                                            format,
2526                                            name,
2527                                            pitch,
2528                                            NULL);
2529
2530    return dri2_create_image_from_dri(disp, dri_image);
2531 }
2532
2533 static EGLBoolean
2534 dri2_check_dma_buf_attribs(const _EGLImageAttribs *attrs)
2535 {
2536    /**
2537      * The spec says:
2538      *
2539      * "Required attributes and their values are as follows:
2540      *
2541      *  * EGL_WIDTH & EGL_HEIGHT: The logical dimensions of the buffer in pixels
2542      *
2543      *  * EGL_LINUX_DRM_FOURCC_EXT: The pixel format of the buffer, as specified
2544      *    by drm_fourcc.h and used as the pixel_format parameter of the
2545      *    drm_mode_fb_cmd2 ioctl."
2546      *
2547      * and
2548      *
2549      * "* If <target> is EGL_LINUX_DMA_BUF_EXT, and the list of attributes is
2550      *    incomplete, EGL_BAD_PARAMETER is generated."
2551      */
2552    if (attrs->Width <= 0 || attrs->Height <= 0 ||
2553        !attrs->DMABufFourCC.IsPresent)
2554       return _eglError(EGL_BAD_PARAMETER, "attribute(s) missing");
2555
2556    /**
2557     * Also:
2558     *
2559     * "If <target> is EGL_LINUX_DMA_BUF_EXT and one or more of the values
2560     *  specified for a plane's pitch or offset isn't supported by EGL,
2561     *  EGL_BAD_ACCESS is generated."
2562     */
2563    for (unsigned i = 0; i < ARRAY_SIZE(attrs->DMABufPlanePitches); ++i) {
2564       if (attrs->DMABufPlanePitches[i].IsPresent &&
2565           attrs->DMABufPlanePitches[i].Value <= 0)
2566          return _eglError(EGL_BAD_ACCESS, "invalid pitch");
2567    }
2568
2569    /**
2570     * If <target> is EGL_LINUX_DMA_BUF_EXT, both or neither of the following
2571     * attribute values may be given.
2572     *
2573     * This is referring to EGL_DMA_BUF_PLANE0_MODIFIER_LO_EXT and
2574     * EGL_DMA_BUF_PLANE0_MODIFIER_HI_EXT, and the same for other planes.
2575     */
2576    for (unsigned i = 0; i < DMA_BUF_MAX_PLANES; ++i) {
2577       if (attrs->DMABufPlaneModifiersLo[i].IsPresent !=
2578           attrs->DMABufPlaneModifiersHi[i].IsPresent)
2579          return _eglError(EGL_BAD_PARAMETER, "modifier attribute lo or hi missing");
2580    }
2581
2582    /* Although the EGL_EXT_image_dma_buf_import_modifiers spec doesn't
2583     * mandate it, we only accept the same modifier across all planes. */
2584    for (unsigned i = 1; i < DMA_BUF_MAX_PLANES; ++i) {
2585       if (attrs->DMABufPlaneFds[i].IsPresent) {
2586          if ((attrs->DMABufPlaneModifiersLo[0].IsPresent !=
2587                attrs->DMABufPlaneModifiersLo[i].IsPresent) ||
2588              (attrs->DMABufPlaneModifiersLo[0].Value !=
2589                attrs->DMABufPlaneModifiersLo[i].Value) ||
2590              (attrs->DMABufPlaneModifiersHi[0].Value !=
2591                attrs->DMABufPlaneModifiersHi[i].Value))
2592             return _eglError(EGL_BAD_PARAMETER, "modifier attributes not equal");
2593       }
2594    }
2595
2596    return EGL_TRUE;
2597 }
2598
2599 /* Returns the total number of planes for the format or zero if it isn't a
2600  * valid fourcc format.
2601  */
2602 static unsigned
2603 dri2_num_fourcc_format_planes(EGLint format)
2604 {
2605    switch (format) {
2606    case DRM_FORMAT_R8:
2607    case DRM_FORMAT_RG88:
2608    case DRM_FORMAT_GR88:
2609    case DRM_FORMAT_R16:
2610    case DRM_FORMAT_GR1616:
2611    case DRM_FORMAT_RGB332:
2612    case DRM_FORMAT_BGR233:
2613    case DRM_FORMAT_XRGB4444:
2614    case DRM_FORMAT_XBGR4444:
2615    case DRM_FORMAT_RGBX4444:
2616    case DRM_FORMAT_BGRX4444:
2617    case DRM_FORMAT_ARGB4444:
2618    case DRM_FORMAT_ABGR4444:
2619    case DRM_FORMAT_RGBA4444:
2620    case DRM_FORMAT_BGRA4444:
2621    case DRM_FORMAT_XRGB1555:
2622    case DRM_FORMAT_XBGR1555:
2623    case DRM_FORMAT_RGBX5551:
2624    case DRM_FORMAT_BGRX5551:
2625    case DRM_FORMAT_ARGB1555:
2626    case DRM_FORMAT_ABGR1555:
2627    case DRM_FORMAT_RGBA5551:
2628    case DRM_FORMAT_BGRA5551:
2629    case DRM_FORMAT_RGB565:
2630    case DRM_FORMAT_BGR565:
2631    case DRM_FORMAT_RGB888:
2632    case DRM_FORMAT_BGR888:
2633    case DRM_FORMAT_XRGB8888:
2634    case DRM_FORMAT_XBGR8888:
2635    case DRM_FORMAT_RGBX8888:
2636    case DRM_FORMAT_BGRX8888:
2637    case DRM_FORMAT_ARGB8888:
2638    case DRM_FORMAT_ABGR8888:
2639    case DRM_FORMAT_RGBA8888:
2640    case DRM_FORMAT_BGRA8888:
2641    case DRM_FORMAT_XRGB2101010:
2642    case DRM_FORMAT_XBGR2101010:
2643    case DRM_FORMAT_RGBX1010102:
2644    case DRM_FORMAT_BGRX1010102:
2645    case DRM_FORMAT_ARGB2101010:
2646    case DRM_FORMAT_ABGR2101010:
2647    case DRM_FORMAT_RGBA1010102:
2648    case DRM_FORMAT_BGRA1010102:
2649    case DRM_FORMAT_XBGR16161616F:
2650    case DRM_FORMAT_ABGR16161616F:
2651    case DRM_FORMAT_YUYV:
2652    case DRM_FORMAT_YVYU:
2653    case DRM_FORMAT_UYVY:
2654    case DRM_FORMAT_VYUY:
2655    case DRM_FORMAT_AYUV:
2656    case DRM_FORMAT_XYUV8888:
2657    case DRM_FORMAT_Y210:
2658    case DRM_FORMAT_Y212:
2659    case DRM_FORMAT_Y216:
2660    case DRM_FORMAT_Y410:
2661    case DRM_FORMAT_Y412:
2662    case DRM_FORMAT_Y416:
2663       return 1;
2664
2665    case DRM_FORMAT_NV12:
2666    case DRM_FORMAT_NV21:
2667    case DRM_FORMAT_NV16:
2668    case DRM_FORMAT_NV61:
2669    case DRM_FORMAT_P010:
2670    case DRM_FORMAT_P012:
2671    case DRM_FORMAT_P016:
2672       return 2;
2673
2674    case DRM_FORMAT_YUV410:
2675    case DRM_FORMAT_YVU410:
2676    case DRM_FORMAT_YUV411:
2677    case DRM_FORMAT_YVU411:
2678    case DRM_FORMAT_YUV420:
2679    case DRM_FORMAT_YVU420:
2680    case DRM_FORMAT_YUV422:
2681    case DRM_FORMAT_YVU422:
2682    case DRM_FORMAT_YUV444:
2683    case DRM_FORMAT_YVU444:
2684       return 3;
2685
2686    default:
2687       return 0;
2688    }
2689 }
2690
2691 /* Returns the total number of file descriptors. Zero indicates an error. */
2692 static unsigned
2693 dri2_check_dma_buf_format(const _EGLImageAttribs *attrs)
2694 {
2695    unsigned plane_n = dri2_num_fourcc_format_planes(attrs->DMABufFourCC.Value);
2696    if (plane_n == 0) {
2697       _eglError(EGL_BAD_MATCH, "unknown drm fourcc format");
2698       return 0;
2699    }
2700
2701    for (unsigned i = plane_n; i < DMA_BUF_MAX_PLANES; i++) {
2702       /**
2703        * The modifiers extension spec says:
2704        *
2705        * "Modifiers may modify any attribute of a buffer import, including
2706        *  but not limited to adding extra planes to a format which
2707        *  otherwise does not have those planes. As an example, a modifier
2708        *  may add a plane for an external compression buffer to a
2709        *  single-plane format. The exact meaning and effect of any
2710        *  modifier is canonically defined by drm_fourcc.h, not as part of
2711        *  this extension."
2712        */
2713       if (attrs->DMABufPlaneModifiersLo[i].IsPresent &&
2714           attrs->DMABufPlaneModifiersHi[i].IsPresent) {
2715          plane_n = i + 1;
2716       }
2717    }
2718
2719    /**
2720      * The spec says:
2721      *
2722      * "* If <target> is EGL_LINUX_DMA_BUF_EXT, and the list of attributes is
2723      *    incomplete, EGL_BAD_PARAMETER is generated."
2724      */
2725    for (unsigned i = 0; i < plane_n; ++i) {
2726       if (!attrs->DMABufPlaneFds[i].IsPresent ||
2727           !attrs->DMABufPlaneOffsets[i].IsPresent ||
2728           !attrs->DMABufPlanePitches[i].IsPresent) {
2729          _eglError(EGL_BAD_PARAMETER, "plane attribute(s) missing");
2730          return 0;
2731       }
2732    }
2733
2734    /**
2735     * The spec also says:
2736     *
2737     * "If <target> is EGL_LINUX_DMA_BUF_EXT, and the EGL_LINUX_DRM_FOURCC_EXT
2738     *  attribute indicates a single-plane format, EGL_BAD_ATTRIBUTE is
2739     *  generated if any of the EGL_DMA_BUF_PLANE1_* or EGL_DMA_BUF_PLANE2_*
2740     *  or EGL_DMA_BUF_PLANE3_* attributes are specified."
2741     */
2742    for (unsigned i = plane_n; i < DMA_BUF_MAX_PLANES; ++i) {
2743       if (attrs->DMABufPlaneFds[i].IsPresent ||
2744           attrs->DMABufPlaneOffsets[i].IsPresent ||
2745           attrs->DMABufPlanePitches[i].IsPresent) {
2746          _eglError(EGL_BAD_ATTRIBUTE, "too many plane attributes");
2747          return 0;
2748       }
2749    }
2750
2751    return plane_n;
2752 }
2753
2754 static EGLBoolean
2755 dri2_query_dma_buf_formats(_EGLDisplay *disp, EGLint max,
2756                            EGLint *formats, EGLint *count)
2757 {
2758    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
2759    if (max < 0 || (max > 0 && formats == NULL))
2760       return _eglError(EGL_BAD_PARAMETER, "invalid value for max count of formats");
2761
2762    if (dri2_dpy->image->base.version < 15 ||
2763        dri2_dpy->image->queryDmaBufFormats == NULL)
2764       return EGL_FALSE;
2765
2766    if (!dri2_dpy->image->queryDmaBufFormats(dri2_dpy->dri_screen, max,
2767                                             formats, count))
2768       return EGL_FALSE;
2769
2770    if (max > 0) {
2771       /* Assert that all of the formats returned are actually fourcc formats.
2772        * Some day, if we want the internal interface function to be able to
2773        * return the fake fourcc formats defined in dri_interface.h, we'll have
2774        * to do something more clever here to pair the list down to just real
2775        * fourcc formats so that we don't leak the fake internal ones.
2776        */
2777       for (int i = 0; i < *count; i++) {
2778          assert(dri2_num_fourcc_format_planes(formats[i]) > 0);
2779       }
2780    }
2781
2782    return EGL_TRUE;
2783 }
2784
2785 static EGLBoolean
2786 dri2_query_dma_buf_modifiers(_EGLDisplay *disp, EGLint format,
2787                              EGLint max, EGLuint64KHR *modifiers,
2788                              EGLBoolean *external_only, EGLint *count)
2789 {
2790    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
2791
2792    if (dri2_num_fourcc_format_planes(format) == 0)
2793       return _eglError(EGL_BAD_PARAMETER, "invalid fourcc format");
2794
2795    if (max < 0)
2796       return _eglError(EGL_BAD_PARAMETER, "invalid value for max count of formats");
2797
2798    if (max > 0 && modifiers == NULL)
2799       return _eglError(EGL_BAD_PARAMETER, "invalid modifiers array");
2800
2801    if (dri2_dpy->image->base.version < 15 ||
2802        dri2_dpy->image->queryDmaBufModifiers == NULL)
2803       return EGL_FALSE;
2804
2805    if (dri2_dpy->image->queryDmaBufModifiers(dri2_dpy->dri_screen, format,
2806                                              max, modifiers,
2807                                              (unsigned int *) external_only,
2808                                              count) == false)
2809       return _eglError(EGL_BAD_PARAMETER, "invalid format");
2810
2811    return EGL_TRUE;
2812 }
2813
2814 /**
2815  * The spec says:
2816  *
2817  * "If eglCreateImageKHR is successful for a EGL_LINUX_DMA_BUF_EXT target, the
2818  *  EGL will take a reference to the dma_buf(s) which it will release at any
2819  *  time while the EGLDisplay is initialized. It is the responsibility of the
2820  *  application to close the dma_buf file descriptors."
2821  *
2822  * Therefore we must never close or otherwise modify the file descriptors.
2823  */
2824 _EGLImage *
2825 dri2_create_image_dma_buf(_EGLDisplay *disp, _EGLContext *ctx,
2826                           EGLClientBuffer buffer, const EGLint *attr_list)
2827 {
2828    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
2829    _EGLImage *res;
2830    _EGLImageAttribs attrs;
2831    __DRIimage *dri_image;
2832    unsigned num_fds;
2833    int fds[DMA_BUF_MAX_PLANES];
2834    int pitches[DMA_BUF_MAX_PLANES];
2835    int offsets[DMA_BUF_MAX_PLANES];
2836    uint64_t modifier;
2837    bool has_modifier = false;
2838    unsigned error;
2839
2840    /**
2841     * The spec says:
2842     *
2843     * ""* If <target> is EGL_LINUX_DMA_BUF_EXT and <buffer> is not NULL, the
2844     *     error EGL_BAD_PARAMETER is generated."
2845     */
2846    if (buffer != NULL) {
2847       _eglError(EGL_BAD_PARAMETER, "buffer not NULL");
2848       return NULL;
2849    }
2850
2851    if (!_eglParseImageAttribList(&attrs, disp, attr_list))
2852       return NULL;
2853
2854    if (!dri2_check_dma_buf_attribs(&attrs))
2855       return NULL;
2856
2857    num_fds = dri2_check_dma_buf_format(&attrs);
2858    if (!num_fds)
2859       return NULL;
2860
2861    for (unsigned i = 0; i < num_fds; ++i) {
2862       fds[i] = attrs.DMABufPlaneFds[i].Value;
2863       pitches[i] = attrs.DMABufPlanePitches[i].Value;
2864       offsets[i] = attrs.DMABufPlaneOffsets[i].Value;
2865    }
2866
2867    /* dri2_check_dma_buf_attribs ensures that the modifier, if available,
2868     * will be present in attrs.DMABufPlaneModifiersLo[0] and
2869     * attrs.DMABufPlaneModifiersHi[0] */
2870    if (attrs.DMABufPlaneModifiersLo[0].IsPresent) {
2871       modifier = combine_u32_into_u64(attrs.DMABufPlaneModifiersHi[0].Value,
2872                                       attrs.DMABufPlaneModifiersLo[0].Value);
2873       has_modifier = true;
2874    }
2875
2876    if (attrs.ProtectedContent) {
2877       if (dri2_dpy->image->base.version < 18 ||
2878           dri2_dpy->image->createImageFromDmaBufs3 == NULL) {
2879          _eglError(EGL_BAD_MATCH, "unsupported protected_content attribute");
2880          return EGL_NO_IMAGE_KHR;
2881       }
2882       if (!has_modifier)
2883          modifier = DRM_FORMAT_MOD_INVALID;
2884
2885       dri_image =
2886          dri2_dpy->image->createImageFromDmaBufs3(dri2_dpy->dri_screen,
2887             attrs.Width, attrs.Height, attrs.DMABufFourCC.Value,
2888             modifier, fds, num_fds, pitches, offsets,
2889             attrs.DMABufYuvColorSpaceHint.Value,
2890             attrs.DMABufSampleRangeHint.Value,
2891             attrs.DMABufChromaHorizontalSiting.Value,
2892             attrs.DMABufChromaVerticalSiting.Value,
2893             attrs.ProtectedContent ? __DRI_IMAGE_PROTECTED_CONTENT_FLAG : 0,
2894             &error,
2895             NULL);
2896    }
2897    else if (has_modifier) {
2898       if (dri2_dpy->image->base.version < 15 ||
2899           dri2_dpy->image->createImageFromDmaBufs2 == NULL) {
2900          _eglError(EGL_BAD_MATCH, "unsupported dma_buf format modifier");
2901          return EGL_NO_IMAGE_KHR;
2902       }
2903       dri_image =
2904          dri2_dpy->image->createImageFromDmaBufs2(dri2_dpy->dri_screen,
2905             attrs.Width, attrs.Height, attrs.DMABufFourCC.Value,
2906             modifier, fds, num_fds, pitches, offsets,
2907             attrs.DMABufYuvColorSpaceHint.Value,
2908             attrs.DMABufSampleRangeHint.Value,
2909             attrs.DMABufChromaHorizontalSiting.Value,
2910             attrs.DMABufChromaVerticalSiting.Value,
2911             &error,
2912             NULL);
2913    }
2914    else {
2915       dri_image =
2916          dri2_dpy->image->createImageFromDmaBufs(dri2_dpy->dri_screen,
2917             attrs.Width, attrs.Height, attrs.DMABufFourCC.Value,
2918             fds, num_fds, pitches, offsets,
2919             attrs.DMABufYuvColorSpaceHint.Value,
2920             attrs.DMABufSampleRangeHint.Value,
2921             attrs.DMABufChromaHorizontalSiting.Value,
2922             attrs.DMABufChromaVerticalSiting.Value,
2923             &error,
2924             NULL);
2925    }
2926    dri2_create_image_khr_texture_error(error);
2927
2928    if (!dri_image)
2929       return EGL_NO_IMAGE_KHR;
2930
2931    res = dri2_create_image_from_dri(disp, dri_image);
2932
2933    return res;
2934 }
2935 static _EGLImage *
2936 dri2_create_drm_image_mesa(_EGLDisplay *disp, const EGLint *attr_list)
2937 {
2938    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
2939    struct dri2_egl_image *dri2_img;
2940    _EGLImageAttribs attrs;
2941    unsigned int dri_use, valid_mask;
2942    int format;
2943
2944    if (!attr_list) {
2945       _eglError(EGL_BAD_PARAMETER, __func__);
2946       return EGL_NO_IMAGE_KHR;
2947    }
2948
2949    if (!_eglParseImageAttribList(&attrs, disp, attr_list))
2950       return EGL_NO_IMAGE_KHR;
2951
2952    if (attrs.Width <= 0 || attrs.Height <= 0) {
2953       _eglError(EGL_BAD_PARAMETER, __func__);
2954       return EGL_NO_IMAGE_KHR;
2955    }
2956
2957    switch (attrs.DRMBufferFormatMESA) {
2958    case EGL_DRM_BUFFER_FORMAT_ARGB32_MESA:
2959       format = __DRI_IMAGE_FORMAT_ARGB8888;
2960       break;
2961    default:
2962       _eglError(EGL_BAD_PARAMETER, __func__);
2963       return EGL_NO_IMAGE_KHR;
2964    }
2965
2966    valid_mask =
2967       EGL_DRM_BUFFER_USE_SCANOUT_MESA |
2968       EGL_DRM_BUFFER_USE_SHARE_MESA |
2969       EGL_DRM_BUFFER_USE_CURSOR_MESA;
2970    if (attrs.DRMBufferUseMESA & ~valid_mask) {
2971       _eglError(EGL_BAD_PARAMETER, __func__);
2972       return EGL_NO_IMAGE_KHR;
2973    }
2974
2975    dri_use = 0;
2976    if (attrs.DRMBufferUseMESA & EGL_DRM_BUFFER_USE_SHARE_MESA)
2977       dri_use |= __DRI_IMAGE_USE_SHARE;
2978    if (attrs.DRMBufferUseMESA & EGL_DRM_BUFFER_USE_SCANOUT_MESA)
2979       dri_use |= __DRI_IMAGE_USE_SCANOUT;
2980    if (attrs.DRMBufferUseMESA & EGL_DRM_BUFFER_USE_CURSOR_MESA)
2981       dri_use |= __DRI_IMAGE_USE_CURSOR;
2982
2983    dri2_img = malloc(sizeof *dri2_img);
2984    if (!dri2_img) {
2985       _eglError(EGL_BAD_ALLOC, "dri2_create_image_khr");
2986       return EGL_NO_IMAGE_KHR;
2987    }
2988
2989    _eglInitImage(&dri2_img->base, disp);
2990
2991    dri2_img->dri_image =
2992       dri2_dpy->image->createImage(dri2_dpy->dri_screen,
2993                                    attrs.Width, attrs.Height,
2994                                    format, dri_use, dri2_img);
2995    if (dri2_img->dri_image == NULL) {
2996       free(dri2_img);
2997        _eglError(EGL_BAD_ALLOC, "dri2_create_drm_image_mesa");
2998       return EGL_NO_IMAGE_KHR;
2999    }
3000
3001    return &dri2_img->base;
3002 }
3003
3004 static EGLBoolean
3005 dri2_export_drm_image_mesa(_EGLDisplay *disp, _EGLImage *img,
3006                           EGLint *name, EGLint *handle, EGLint *stride)
3007 {
3008    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
3009    struct dri2_egl_image *dri2_img = dri2_egl_image(img);
3010
3011    if (name && !dri2_dpy->image->queryImage(dri2_img->dri_image,
3012                                             __DRI_IMAGE_ATTRIB_NAME, name))
3013       return _eglError(EGL_BAD_ALLOC, "dri2_export_drm_image_mesa");
3014
3015    if (handle)
3016       dri2_dpy->image->queryImage(dri2_img->dri_image,
3017                                   __DRI_IMAGE_ATTRIB_HANDLE, handle);
3018
3019    if (stride)
3020       dri2_dpy->image->queryImage(dri2_img->dri_image,
3021                                   __DRI_IMAGE_ATTRIB_STRIDE, stride);
3022
3023    return EGL_TRUE;
3024 }
3025
3026 /**
3027  * Checks if we can support EGL_MESA_image_dma_buf_export on this image.
3028
3029  * The spec provides a boolean return for the driver to reject exporting for
3030  * basically any reason, but doesn't specify any particular error cases.  For
3031  * now, we just fail if we don't have a DRM fourcc for the format.
3032  */
3033 static bool
3034 dri2_can_export_dma_buf_image(_EGLDisplay *disp, _EGLImage *img)
3035 {
3036    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
3037    struct dri2_egl_image *dri2_img = dri2_egl_image(img);
3038    EGLint fourcc;
3039
3040    if (!dri2_dpy->image->queryImage(dri2_img->dri_image,
3041                                     __DRI_IMAGE_ATTRIB_FOURCC, &fourcc)) {
3042       return false;
3043    }
3044
3045    return true;
3046 }
3047
3048 static EGLBoolean
3049 dri2_export_dma_buf_image_query_mesa(_EGLDisplay *disp, _EGLImage *img,
3050                                      EGLint *fourcc, EGLint *nplanes,
3051                                      EGLuint64KHR *modifiers)
3052 {
3053    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
3054    struct dri2_egl_image *dri2_img = dri2_egl_image(img);
3055    int num_planes;
3056
3057    if (!dri2_can_export_dma_buf_image(disp, img))
3058       return EGL_FALSE;
3059
3060    dri2_dpy->image->queryImage(dri2_img->dri_image,
3061                                __DRI_IMAGE_ATTRIB_NUM_PLANES, &num_planes);
3062    if (nplanes)
3063      *nplanes = num_planes;
3064
3065    if (fourcc)
3066       dri2_dpy->image->queryImage(dri2_img->dri_image,
3067                                   __DRI_IMAGE_ATTRIB_FOURCC, fourcc);
3068
3069    if (modifiers) {
3070       int mod_hi, mod_lo;
3071       uint64_t modifier = DRM_FORMAT_MOD_INVALID;
3072       bool query;
3073
3074       query = dri2_dpy->image->queryImage(dri2_img->dri_image,
3075                                           __DRI_IMAGE_ATTRIB_MODIFIER_UPPER,
3076                                           &mod_hi);
3077       query &= dri2_dpy->image->queryImage(dri2_img->dri_image,
3078                                            __DRI_IMAGE_ATTRIB_MODIFIER_LOWER,
3079                                            &mod_lo);
3080       if (query)
3081          modifier = combine_u32_into_u64 (mod_hi, mod_lo);
3082
3083       for (int i = 0; i < num_planes; i++)
3084         modifiers[i] = modifier;
3085    }
3086
3087    return EGL_TRUE;
3088 }
3089
3090 static EGLBoolean
3091 dri2_export_dma_buf_image_mesa(_EGLDisplay *disp, _EGLImage *img,
3092                                int *fds, EGLint *strides, EGLint *offsets)
3093 {
3094    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
3095    struct dri2_egl_image *dri2_img = dri2_egl_image(img);
3096    EGLint nplanes;
3097
3098    if (!dri2_can_export_dma_buf_image(disp, img))
3099       return EGL_FALSE;
3100
3101    /* EGL_MESA_image_dma_buf_export spec says:
3102     *    "If the number of fds is less than the number of planes, then
3103     *    subsequent fd slots should contain -1."
3104     */
3105    if (fds) {
3106       /* Query nplanes so that we know how big the given array is. */
3107       dri2_dpy->image->queryImage(dri2_img->dri_image,
3108                                   __DRI_IMAGE_ATTRIB_NUM_PLANES, &nplanes);
3109       memset(fds, -1, nplanes * sizeof(int));
3110    }
3111
3112    /* rework later to provide multiple fds/strides/offsets */
3113    if (fds)
3114       dri2_dpy->image->queryImage(dri2_img->dri_image,
3115                                   __DRI_IMAGE_ATTRIB_FD, fds);
3116
3117    if (strides)
3118       dri2_dpy->image->queryImage(dri2_img->dri_image,
3119                                   __DRI_IMAGE_ATTRIB_STRIDE, strides);
3120
3121    if (offsets) {
3122       int img_offset;
3123       bool ret = dri2_dpy->image->queryImage(dri2_img->dri_image,
3124                      __DRI_IMAGE_ATTRIB_OFFSET, &img_offset);
3125       if (ret)
3126          offsets[0] = img_offset;
3127       else
3128          offsets[0] = 0;
3129    }
3130
3131    return EGL_TRUE;
3132 }
3133
3134 #endif
3135
3136 _EGLImage *
3137 dri2_create_image_khr(_EGLDisplay *disp, _EGLContext *ctx, EGLenum target,
3138                       EGLClientBuffer buffer, const EGLint *attr_list)
3139 {
3140    switch (target) {
3141    case EGL_GL_TEXTURE_2D_KHR:
3142    case EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_X_KHR:
3143    case EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_X_KHR:
3144    case EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_Y_KHR:
3145    case EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_KHR:
3146    case EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_Z_KHR:
3147    case EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_KHR:
3148    case EGL_GL_TEXTURE_3D_KHR:
3149       return dri2_create_image_khr_texture(disp, ctx, target, buffer, attr_list);
3150    case EGL_GL_RENDERBUFFER_KHR:
3151       return dri2_create_image_khr_renderbuffer(disp, ctx, buffer, attr_list);
3152 #ifdef HAVE_LIBDRM
3153    case EGL_DRM_BUFFER_MESA:
3154       return dri2_create_image_mesa_drm_buffer(disp, ctx, buffer, attr_list);
3155    case EGL_LINUX_DMA_BUF_EXT:
3156       return dri2_create_image_dma_buf(disp, ctx, buffer, attr_list);
3157 #endif
3158 #ifdef HAVE_WAYLAND_PLATFORM
3159    case EGL_WAYLAND_BUFFER_WL:
3160       return dri2_create_image_wayland_wl_buffer(disp, ctx, buffer, attr_list);
3161 #endif
3162    default:
3163       _eglError(EGL_BAD_PARAMETER, "dri2_create_image_khr");
3164       return EGL_NO_IMAGE_KHR;
3165    }
3166 }
3167
3168 static EGLBoolean
3169 dri2_destroy_image_khr(_EGLDisplay *disp, _EGLImage *image)
3170 {
3171    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
3172    struct dri2_egl_image *dri2_img = dri2_egl_image(image);
3173
3174    dri2_dpy->image->destroyImage(dri2_img->dri_image);
3175    free(dri2_img);
3176
3177    return EGL_TRUE;
3178 }
3179
3180 #ifdef HAVE_WAYLAND_PLATFORM
3181
3182 static void
3183 dri2_wl_reference_buffer(void *user_data, uint32_t name, int fd,
3184                          struct wl_drm_buffer *buffer)
3185 {
3186    _EGLDisplay *disp = user_data;
3187    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
3188    __DRIimage *img;
3189    int dri_components = 0;
3190
3191    if (fd == -1)
3192       img = dri2_dpy->image->createImageFromNames(dri2_dpy->dri_screen,
3193                                                   buffer->width,
3194                                                   buffer->height,
3195                                                   buffer->format,
3196                                                   (int*)&name, 1,
3197                                                   buffer->stride,
3198                                                   buffer->offset,
3199                                                   NULL);
3200    else
3201       img = dri2_dpy->image->createImageFromFds(dri2_dpy->dri_screen,
3202                                                 buffer->width,
3203                                                 buffer->height,
3204                                                 buffer->format,
3205                                                 &fd, 1,
3206                                                 buffer->stride,
3207                                                 buffer->offset,
3208                                                 NULL);
3209
3210    if (img == NULL)
3211       return;
3212
3213    dri2_dpy->image->queryImage(img, __DRI_IMAGE_ATTRIB_COMPONENTS, &dri_components);
3214
3215    buffer->driver_format = NULL;
3216    for (int i = 0; i < ARRAY_SIZE(wl_drm_components); i++)
3217       if (wl_drm_components[i].dri_components == dri_components)
3218          buffer->driver_format = &wl_drm_components[i];
3219
3220    if (buffer->driver_format == NULL)
3221       dri2_dpy->image->destroyImage(img);
3222    else
3223       buffer->driver_buffer = img;
3224 }
3225
3226 static void
3227 dri2_wl_release_buffer(void *user_data, struct wl_drm_buffer *buffer)
3228 {
3229    _EGLDisplay *disp = user_data;
3230    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
3231
3232    dri2_dpy->image->destroyImage(buffer->driver_buffer);
3233 }
3234
3235 static EGLBoolean
3236 dri2_bind_wayland_display_wl(_EGLDisplay *disp, struct wl_display *wl_dpy)
3237 {
3238    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
3239    const struct wayland_drm_callbacks wl_drm_callbacks = {
3240       .authenticate = (int(*)(void *, uint32_t)) dri2_dpy->vtbl->authenticate,
3241       .reference_buffer = dri2_wl_reference_buffer,
3242       .release_buffer = dri2_wl_release_buffer,
3243       .is_format_supported = dri2_wl_is_format_supported
3244    };
3245    int flags = 0;
3246    char *device_name;
3247    uint64_t cap;
3248
3249    if (dri2_dpy->wl_server_drm)
3250            return EGL_FALSE;
3251
3252    device_name = drmGetRenderDeviceNameFromFd(dri2_dpy->fd);
3253    if (!device_name)
3254       device_name = strdup(dri2_dpy->device_name);
3255    if (!device_name)
3256       return EGL_FALSE;
3257
3258    if (drmGetCap(dri2_dpy->fd, DRM_CAP_PRIME, &cap) == 0 &&
3259        cap == (DRM_PRIME_CAP_IMPORT | DRM_PRIME_CAP_EXPORT) &&
3260        dri2_dpy->image->base.version >= 7 &&
3261        dri2_dpy->image->createImageFromFds != NULL)
3262       flags |= WAYLAND_DRM_PRIME;
3263
3264    dri2_dpy->wl_server_drm =
3265            wayland_drm_init(wl_dpy, device_name,
3266                             &wl_drm_callbacks, disp, flags);
3267
3268    free(device_name);
3269
3270    if (!dri2_dpy->wl_server_drm)
3271            return EGL_FALSE;
3272
3273 #ifdef HAVE_DRM_PLATFORM
3274    /* We have to share the wl_drm instance with gbm, so gbm can convert
3275     * wl_buffers to gbm bos. */
3276    if (dri2_dpy->gbm_dri)
3277       dri2_dpy->gbm_dri->wl_drm = dri2_dpy->wl_server_drm;
3278 #endif
3279
3280    return EGL_TRUE;
3281 }
3282
3283 static EGLBoolean
3284 dri2_unbind_wayland_display_wl(_EGLDisplay *disp, struct wl_display *wl_dpy)
3285 {
3286    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
3287
3288    if (!dri2_dpy->wl_server_drm)
3289            return EGL_FALSE;
3290
3291    wayland_drm_uninit(dri2_dpy->wl_server_drm);
3292    dri2_dpy->wl_server_drm = NULL;
3293
3294    return EGL_TRUE;
3295 }
3296
3297 static EGLBoolean
3298 dri2_query_wayland_buffer_wl(_EGLDisplay *disp, struct wl_resource *buffer_resource,
3299                              EGLint attribute, EGLint *value)
3300 {
3301    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
3302    struct wl_drm_buffer *buffer;
3303    const struct wl_drm_components_descriptor *format;
3304
3305    buffer = wayland_drm_buffer_get(dri2_dpy->wl_server_drm, buffer_resource);
3306    if (!buffer)
3307       return EGL_FALSE;
3308
3309    format = buffer->driver_format;
3310    switch (attribute) {
3311    case EGL_TEXTURE_FORMAT:
3312       *value = format->components;
3313       return EGL_TRUE;
3314    case EGL_WIDTH:
3315       *value = buffer->width;
3316       return EGL_TRUE;
3317    case EGL_HEIGHT:
3318       *value = buffer->height;
3319       return EGL_TRUE;
3320    }
3321
3322    return EGL_FALSE;
3323 }
3324 #endif
3325
3326 static void
3327 dri2_egl_ref_sync(struct dri2_egl_sync *sync)
3328 {
3329    p_atomic_inc(&sync->refcount);
3330 }
3331
3332 static void
3333 dri2_egl_unref_sync(struct dri2_egl_display *dri2_dpy,
3334                     struct dri2_egl_sync *dri2_sync)
3335 {
3336    if (p_atomic_dec_zero(&dri2_sync->refcount)) {
3337       switch (dri2_sync->base.Type) {
3338       case EGL_SYNC_REUSABLE_KHR:
3339          cnd_destroy(&dri2_sync->cond);
3340          break;
3341       case EGL_SYNC_NATIVE_FENCE_ANDROID:
3342          if (dri2_sync->base.SyncFd != EGL_NO_NATIVE_FENCE_FD_ANDROID)
3343             close(dri2_sync->base.SyncFd);
3344          break;
3345       default:
3346          break;
3347       }
3348
3349       if (dri2_sync->fence)
3350          dri2_dpy->fence->destroy_fence(dri2_dpy->dri_screen, dri2_sync->fence);
3351
3352       free(dri2_sync);
3353    }
3354 }
3355
3356 static _EGLSync *
3357 dri2_create_sync(_EGLDisplay *disp, EGLenum type, const EGLAttrib *attrib_list)
3358 {
3359    _EGLContext *ctx = _eglGetCurrentContext();
3360    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
3361    struct dri2_egl_context *dri2_ctx = dri2_egl_context(ctx);
3362    struct dri2_egl_sync *dri2_sync;
3363    EGLint ret;
3364    pthread_condattr_t attr;
3365
3366    dri2_sync = calloc(1, sizeof(struct dri2_egl_sync));
3367    if (!dri2_sync) {
3368       _eglError(EGL_BAD_ALLOC, "eglCreateSyncKHR");
3369       return NULL;
3370    }
3371
3372    if (!_eglInitSync(&dri2_sync->base, disp, type, attrib_list)) {
3373       free(dri2_sync);
3374       return NULL;
3375    }
3376
3377    switch (type) {
3378    case EGL_SYNC_FENCE_KHR:
3379       dri2_sync->fence = dri2_dpy->fence->create_fence(dri2_ctx->dri_context);
3380       if (!dri2_sync->fence) {
3381          /* Why did it fail? DRI doesn't return an error code, so we emit
3382           * a generic EGL error that doesn't communicate user error.
3383           */
3384          _eglError(EGL_BAD_ALLOC, "eglCreateSyncKHR");
3385          free(dri2_sync);
3386          return NULL;
3387       }
3388       break;
3389
3390    case EGL_SYNC_CL_EVENT_KHR:
3391       dri2_sync->fence = dri2_dpy->fence->get_fence_from_cl_event(
3392                                  dri2_dpy->dri_screen,
3393                                  dri2_sync->base.CLEvent);
3394       /* this can only happen if the cl_event passed in is invalid. */
3395       if (!dri2_sync->fence) {
3396          _eglError(EGL_BAD_ATTRIBUTE, "eglCreateSyncKHR");
3397          free(dri2_sync);
3398          return NULL;
3399       }
3400
3401       /* the initial status must be "signaled" if the cl_event is signaled */
3402       if (dri2_dpy->fence->client_wait_sync(dri2_ctx->dri_context,
3403                                             dri2_sync->fence, 0, 0))
3404          dri2_sync->base.SyncStatus = EGL_SIGNALED_KHR;
3405       break;
3406
3407    case EGL_SYNC_REUSABLE_KHR:
3408       /* intialize attr */
3409       ret = pthread_condattr_init(&attr);
3410
3411       if (ret) {
3412          _eglError(EGL_BAD_ACCESS, "eglCreateSyncKHR");
3413          free(dri2_sync);
3414          return NULL;
3415       }
3416
3417       /* change clock attribute to CLOCK_MONOTONIC */
3418       ret = pthread_condattr_setclock(&attr, CLOCK_MONOTONIC);
3419
3420       if (ret) {
3421          _eglError(EGL_BAD_ACCESS, "eglCreateSyncKHR");
3422          free(dri2_sync);
3423          return NULL;
3424       }
3425
3426       ret = pthread_cond_init(&dri2_sync->cond, &attr);
3427
3428       if (ret) {
3429          _eglError(EGL_BAD_ACCESS, "eglCreateSyncKHR");
3430          free(dri2_sync);
3431          return NULL;
3432       }
3433
3434       /* initial status of reusable sync must be "unsignaled" */
3435       dri2_sync->base.SyncStatus = EGL_UNSIGNALED_KHR;
3436       break;
3437
3438    case EGL_SYNC_NATIVE_FENCE_ANDROID:
3439       if (dri2_dpy->fence->create_fence_fd) {
3440          dri2_sync->fence = dri2_dpy->fence->create_fence_fd(
3441                                     dri2_ctx->dri_context,
3442                                     dri2_sync->base.SyncFd);
3443       }
3444       if (!dri2_sync->fence) {
3445          _eglError(EGL_BAD_ATTRIBUTE, "eglCreateSyncKHR");
3446          free(dri2_sync);
3447          return NULL;
3448       }
3449       break;
3450    }
3451
3452    p_atomic_set(&dri2_sync->refcount, 1);
3453    return &dri2_sync->base;
3454 }
3455
3456 static EGLBoolean
3457 dri2_destroy_sync(_EGLDisplay *disp, _EGLSync *sync)
3458 {
3459    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
3460    struct dri2_egl_sync *dri2_sync = dri2_egl_sync(sync);
3461    EGLint ret = EGL_TRUE;
3462    EGLint err;
3463
3464    /* if type of sync is EGL_SYNC_REUSABLE_KHR and it is not signaled yet,
3465     * then unlock all threads possibly blocked by the reusable sync before
3466     * destroying it.
3467     */
3468    if (dri2_sync->base.Type == EGL_SYNC_REUSABLE_KHR &&
3469        dri2_sync->base.SyncStatus == EGL_UNSIGNALED_KHR) {
3470       dri2_sync->base.SyncStatus = EGL_SIGNALED_KHR;
3471       /* unblock all threads currently blocked by sync */
3472       err = cnd_broadcast(&dri2_sync->cond);
3473
3474       if (err) {
3475          _eglError(EGL_BAD_ACCESS, "eglDestroySyncKHR");
3476          ret = EGL_FALSE;
3477       }
3478    }
3479
3480    dri2_egl_unref_sync(dri2_dpy, dri2_sync);
3481
3482    return ret;
3483 }
3484
3485 static EGLint
3486 dri2_dup_native_fence_fd(_EGLDisplay *disp, _EGLSync *sync)
3487 {
3488    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
3489    struct dri2_egl_sync *dri2_sync = dri2_egl_sync(sync);
3490
3491    assert(sync->Type == EGL_SYNC_NATIVE_FENCE_ANDROID);
3492
3493    if (sync->SyncFd == EGL_NO_NATIVE_FENCE_FD_ANDROID) {
3494       /* try to retrieve the actual native fence fd.. if rendering is
3495        * not flushed this will just return -1, aka NO_NATIVE_FENCE_FD:
3496        */
3497       sync->SyncFd = dri2_dpy->fence->get_fence_fd(dri2_dpy->dri_screen,
3498                                                    dri2_sync->fence);
3499    }
3500
3501    if (sync->SyncFd == EGL_NO_NATIVE_FENCE_FD_ANDROID) {
3502       /* if native fence fd still not created, return an error: */
3503       _eglError(EGL_BAD_PARAMETER, "eglDupNativeFenceFDANDROID");
3504       return EGL_NO_NATIVE_FENCE_FD_ANDROID;
3505    }
3506
3507    assert(sync_valid_fd(sync->SyncFd));
3508
3509    return os_dupfd_cloexec(sync->SyncFd);
3510 }
3511
3512 static void
3513 dri2_set_blob_cache_funcs(_EGLDisplay *disp,
3514                           EGLSetBlobFuncANDROID set,
3515                           EGLGetBlobFuncANDROID get)
3516 {
3517    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
3518    dri2_dpy->blob->set_cache_funcs(dri2_dpy->dri_screen,
3519                                    disp->BlobCacheSet,
3520                                    disp->BlobCacheGet);
3521 }
3522
3523 static EGLint
3524 dri2_client_wait_sync(_EGLDisplay *disp, _EGLSync *sync,
3525                       EGLint flags, EGLTime timeout)
3526 {
3527    _EGLContext *ctx = _eglGetCurrentContext();
3528    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
3529    struct dri2_egl_context *dri2_ctx = dri2_egl_context(ctx);
3530    struct dri2_egl_sync *dri2_sync = dri2_egl_sync(sync);
3531    unsigned wait_flags = 0;
3532
3533    EGLint ret = EGL_CONDITION_SATISFIED_KHR;
3534
3535    /* The EGL_KHR_fence_sync spec states:
3536     *
3537     *    "If no context is current for the bound API,
3538     *     the EGL_SYNC_FLUSH_COMMANDS_BIT_KHR bit is ignored.
3539     */
3540    if (dri2_ctx && flags & EGL_SYNC_FLUSH_COMMANDS_BIT_KHR)
3541       wait_flags |= __DRI2_FENCE_FLAG_FLUSH_COMMANDS;
3542
3543    /* the sync object should take a reference while waiting */
3544    dri2_egl_ref_sync(dri2_sync);
3545
3546    switch (sync->Type) {
3547    case EGL_SYNC_FENCE_KHR:
3548    case EGL_SYNC_NATIVE_FENCE_ANDROID:
3549    case EGL_SYNC_CL_EVENT_KHR:
3550       if (dri2_dpy->fence->client_wait_sync(dri2_ctx ? dri2_ctx->dri_context : NULL,
3551                                          dri2_sync->fence, wait_flags,
3552                                          timeout))
3553          dri2_sync->base.SyncStatus = EGL_SIGNALED_KHR;
3554       else
3555          ret = EGL_TIMEOUT_EXPIRED_KHR;
3556       break;
3557
3558    case EGL_SYNC_REUSABLE_KHR:
3559       if (dri2_ctx && dri2_sync->base.SyncStatus == EGL_UNSIGNALED_KHR &&
3560           (flags & EGL_SYNC_FLUSH_COMMANDS_BIT_KHR)) {
3561          /* flush context if EGL_SYNC_FLUSH_COMMANDS_BIT_KHR is set */
3562          dri2_gl_flush();
3563       }
3564
3565       /* if timeout is EGL_FOREVER_KHR, it should wait without any timeout.*/
3566       if (timeout == EGL_FOREVER_KHR) {
3567          mtx_lock(&dri2_sync->mutex);
3568          cnd_wait(&dri2_sync->cond, &dri2_sync->mutex);
3569          mtx_unlock(&dri2_sync->mutex);
3570       } else {
3571          /* if reusable sync has not been yet signaled */
3572          if (dri2_sync->base.SyncStatus != EGL_SIGNALED_KHR) {
3573             /* timespecs for cnd_timedwait */
3574             struct timespec current;
3575             struct timespec expire;
3576
3577             /* We override the clock to monotonic when creating the condition
3578              * variable. */
3579             clock_gettime(CLOCK_MONOTONIC, &current);
3580
3581             /* calculating when to expire */
3582             expire.tv_nsec = timeout % 1000000000L;
3583             expire.tv_sec = timeout / 1000000000L;
3584
3585             expire.tv_nsec += current.tv_nsec;
3586             expire.tv_sec += current.tv_sec;
3587
3588             /* expire.nsec now is a number between 0 and 1999999998 */
3589             if (expire.tv_nsec > 999999999L) {
3590                expire.tv_sec++;
3591                expire.tv_nsec -= 1000000000L;
3592             }
3593
3594             mtx_lock(&dri2_sync->mutex);
3595             ret = cnd_timedwait(&dri2_sync->cond, &dri2_sync->mutex, &expire);
3596             mtx_unlock(&dri2_sync->mutex);
3597
3598             if (ret == thrd_timedout) {
3599                if (dri2_sync->base.SyncStatus == EGL_UNSIGNALED_KHR) {
3600                   ret = EGL_TIMEOUT_EXPIRED_KHR;
3601                } else {
3602                   _eglError(EGL_BAD_ACCESS, "eglClientWaitSyncKHR");
3603                   ret = EGL_FALSE;
3604                }
3605             }
3606          }
3607       }
3608       break;
3609   }
3610   dri2_egl_unref_sync(dri2_dpy, dri2_sync);
3611
3612   return ret;
3613 }
3614
3615 static EGLBoolean
3616 dri2_signal_sync(_EGLDisplay *disp, _EGLSync *sync, EGLenum mode)
3617 {
3618    struct dri2_egl_sync *dri2_sync = dri2_egl_sync(sync);
3619    EGLint ret;
3620
3621    if (sync->Type != EGL_SYNC_REUSABLE_KHR)
3622       return _eglError(EGL_BAD_MATCH, "eglSignalSyncKHR");
3623
3624    if (mode != EGL_SIGNALED_KHR && mode != EGL_UNSIGNALED_KHR)
3625       return _eglError(EGL_BAD_ATTRIBUTE, "eglSignalSyncKHR");
3626
3627    dri2_sync->base.SyncStatus = mode;
3628
3629    if (mode == EGL_SIGNALED_KHR) {
3630       ret = cnd_broadcast(&dri2_sync->cond);
3631
3632       /* fail to broadcast */
3633       if (ret)
3634          return _eglError(EGL_BAD_ACCESS, "eglSignalSyncKHR");
3635    }
3636
3637    return EGL_TRUE;
3638 }
3639
3640 static EGLint
3641 dri2_server_wait_sync(_EGLDisplay *disp, _EGLSync *sync)
3642 {
3643    _EGLContext *ctx = _eglGetCurrentContext();
3644    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
3645    struct dri2_egl_context *dri2_ctx = dri2_egl_context(ctx);
3646    struct dri2_egl_sync *dri2_sync = dri2_egl_sync(sync);
3647
3648    dri2_dpy->fence->server_wait_sync(dri2_ctx->dri_context,
3649                                      dri2_sync->fence, 0);
3650    return EGL_TRUE;
3651 }
3652
3653 static int
3654 dri2_interop_query_device_info(_EGLDisplay *disp, _EGLContext *ctx,
3655                                struct mesa_glinterop_device_info *out)
3656 {
3657    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
3658    struct dri2_egl_context *dri2_ctx = dri2_egl_context(ctx);
3659
3660    if (!dri2_dpy->interop)
3661       return MESA_GLINTEROP_UNSUPPORTED;
3662
3663    return dri2_dpy->interop->query_device_info(dri2_ctx->dri_context, out);
3664 }
3665
3666 static int
3667 dri2_interop_export_object(_EGLDisplay *disp, _EGLContext *ctx,
3668                            struct mesa_glinterop_export_in *in,
3669                            struct mesa_glinterop_export_out *out)
3670 {
3671    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
3672    struct dri2_egl_context *dri2_ctx = dri2_egl_context(ctx);
3673
3674    if (!dri2_dpy->interop)
3675       return MESA_GLINTEROP_UNSUPPORTED;
3676
3677    return dri2_dpy->interop->export_object(dri2_ctx->dri_context, in, out);
3678 }
3679
3680 const _EGLDriver _eglDriver = {
3681    .Initialize = dri2_initialize,
3682    .Terminate = dri2_terminate,
3683    .CreateContext = dri2_create_context,
3684    .DestroyContext = dri2_destroy_context,
3685    .MakeCurrent = dri2_make_current,
3686    .CreateWindowSurface = dri2_create_window_surface,
3687    .CreatePixmapSurface = dri2_create_pixmap_surface,
3688    .CreatePbufferSurface = dri2_create_pbuffer_surface,
3689    .DestroySurface = dri2_destroy_surface,
3690    .GetProcAddress = dri2_get_proc_address,
3691    .WaitClient = dri2_wait_client,
3692    .WaitNative = dri2_wait_native,
3693    .BindTexImage = dri2_bind_tex_image,
3694    .ReleaseTexImage = dri2_release_tex_image,
3695    .SwapInterval = dri2_swap_interval,
3696    .SwapBuffers = dri2_swap_buffers,
3697    .SwapBuffersWithDamageEXT = dri2_swap_buffers_with_damage,
3698    .SwapBuffersRegionNOK = dri2_swap_buffers_region,
3699    .SetDamageRegion = dri2_set_damage_region,
3700    .PostSubBufferNV = dri2_post_sub_buffer,
3701    .CopyBuffers = dri2_copy_buffers,
3702    .QueryBufferAge = dri2_query_buffer_age,
3703    .CreateImageKHR = dri2_create_image,
3704    .DestroyImageKHR = dri2_destroy_image_khr,
3705    .CreateWaylandBufferFromImageWL = dri2_create_wayland_buffer_from_image,
3706    .QuerySurface = dri2_query_surface,
3707    .QueryDriverName = dri2_query_driver_name,
3708    .QueryDriverConfig = dri2_query_driver_config,
3709 #ifdef HAVE_LIBDRM
3710    .CreateDRMImageMESA = dri2_create_drm_image_mesa,
3711    .ExportDRMImageMESA = dri2_export_drm_image_mesa,
3712    .ExportDMABUFImageQueryMESA = dri2_export_dma_buf_image_query_mesa,
3713    .ExportDMABUFImageMESA = dri2_export_dma_buf_image_mesa,
3714    .QueryDmaBufFormatsEXT = dri2_query_dma_buf_formats,
3715    .QueryDmaBufModifiersEXT = dri2_query_dma_buf_modifiers,
3716 #endif
3717 #ifdef HAVE_WAYLAND_PLATFORM
3718    .BindWaylandDisplayWL = dri2_bind_wayland_display_wl,
3719    .UnbindWaylandDisplayWL = dri2_unbind_wayland_display_wl,
3720    .QueryWaylandBufferWL = dri2_query_wayland_buffer_wl,
3721 #endif
3722    .GetSyncValuesCHROMIUM = dri2_get_sync_values_chromium,
3723    .CreateSyncKHR = dri2_create_sync,
3724    .ClientWaitSyncKHR = dri2_client_wait_sync,
3725    .SignalSyncKHR = dri2_signal_sync,
3726    .WaitSyncKHR = dri2_server_wait_sync,
3727    .DestroySyncKHR = dri2_destroy_sync,
3728    .GLInteropQueryDeviceInfo = dri2_interop_query_device_info,
3729    .GLInteropExportObject = dri2_interop_export_object,
3730    .DupNativeFenceFDANDROID = dri2_dup_native_fence_fd,
3731    .SetBlobCacheFuncsANDROID = dri2_set_blob_cache_funcs,
3732 };