OSDN Git Service

egl/dri2: Dispatch eglCreateImageKHR by display, not driver
[android-x86/external-mesa.git] / src / egl / drivers / dri2 / platform_android.c
1 /*
2  * Mesa 3-D graphics library
3  *
4  * Copyright (C) 2010-2011 Chia-I Wu <olvaffe@gmail.com>
5  * Copyright (C) 2010-2011 LunarG Inc.
6  *
7  * Based on platform_x11, which has
8  *
9  * Copyright © 2011 Intel Corporation
10  *
11  * Permission is hereby granted, free of charge, to any person obtaining a
12  * copy of this software and associated documentation files (the "Software"),
13  * to deal in the Software without restriction, including without limitation
14  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
15  * and/or sell copies of the Software, and to permit persons to whom the
16  * Software is furnished to do so, subject to the following conditions:
17  *
18  * The above copyright notice and this permission notice shall be included
19  * in all copies or substantial portions of the Software.
20  *
21  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
24  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
26  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
27  * DEALINGS IN THE SOFTWARE.
28  */
29
30 #include <errno.h>
31 #include <dlfcn.h>
32
33 #if ANDROID_VERSION >= 0x402
34 #include <sync/sync.h>
35 #endif
36
37 #include "loader.h"
38 #include "egl_dri2.h"
39 #include "egl_dri2_fallbacks.h"
40 #include "gralloc_drm.h"
41
42 static int
43 get_format_bpp(int native)
44 {
45    int bpp;
46
47    switch (native) {
48    case HAL_PIXEL_FORMAT_RGBA_8888:
49    case HAL_PIXEL_FORMAT_RGBX_8888:
50    case HAL_PIXEL_FORMAT_BGRA_8888:
51       bpp = 4;
52       break;
53    case HAL_PIXEL_FORMAT_RGB_888:
54       bpp = 3;
55       break;
56    case HAL_PIXEL_FORMAT_RGB_565:
57    case HAL_PIXEL_FORMAT_RGBA_5551:
58    case HAL_PIXEL_FORMAT_RGBA_4444:
59       bpp = 2;
60       break;
61    default:
62       bpp = 0;
63       break;
64    }
65
66    return bpp;
67 }
68
69 static int
70 get_native_buffer_name(struct ANativeWindowBuffer *buf)
71 {
72    return gralloc_drm_get_gem_handle(buf->handle);
73 }
74
75 static EGLBoolean
76 droid_window_dequeue_buffer(struct dri2_egl_surface *dri2_surf)
77 {
78 #if ANDROID_VERSION >= 0x0402
79    int fence_fd;
80
81    if (dri2_surf->window->dequeueBuffer(dri2_surf->window, &dri2_surf->buffer,
82                                         &fence_fd))
83       return EGL_FALSE;
84
85    /* If access to the buffer is controlled by a sync fence, then block on the
86     * fence.
87     *
88     * It may be more performant to postpone blocking until there is an
89     * immediate need to write to the buffer. But doing so would require adding
90     * hooks to the DRI2 loader.
91     *
92     * From the ANativeWindow::dequeueBuffer documentation:
93     *
94     *    The libsync fence file descriptor returned in the int pointed to by
95     *    the fenceFd argument will refer to the fence that must signal
96     *    before the dequeued buffer may be written to.  A value of -1
97     *    indicates that the caller may access the buffer immediately without
98     *    waiting on a fence.  If a valid file descriptor is returned (i.e.
99     *    any value except -1) then the caller is responsible for closing the
100     *    file descriptor.
101     */
102     if (fence_fd >= 0) {
103        /* From the SYNC_IOC_WAIT documentation in <linux/sync.h>:
104         *
105         *    Waits indefinitely if timeout < 0.
106         */
107         int timeout = -1;
108         sync_wait(fence_fd, timeout);
109         close(fence_fd);
110    }
111
112    dri2_surf->buffer->common.incRef(&dri2_surf->buffer->common);
113 #else
114    if (dri2_surf->window->dequeueBuffer(dri2_surf->window, &dri2_surf->buffer))
115       return EGL_FALSE;
116
117    dri2_surf->buffer->common.incRef(&dri2_surf->buffer->common);
118    dri2_surf->window->lockBuffer(dri2_surf->window, dri2_surf->buffer);
119 #endif
120
121    return EGL_TRUE;
122 }
123
124 static EGLBoolean
125 droid_window_enqueue_buffer(struct dri2_egl_surface *dri2_surf)
126 {
127 #if ANDROID_VERSION >= 0x0402
128    /* Queue the buffer without a sync fence. This informs the ANativeWindow
129     * that it may access the buffer immediately.
130     *
131     * From ANativeWindow::dequeueBuffer:
132     *
133     *    The fenceFd argument specifies a libsync fence file descriptor for
134     *    a fence that must signal before the buffer can be accessed.  If
135     *    the buffer can be accessed immediately then a value of -1 should
136     *    be used.  The caller must not use the file descriptor after it
137     *    is passed to queueBuffer, and the ANativeWindow implementation
138     *    is responsible for closing it.
139     */
140    int fence_fd = -1;
141    dri2_surf->window->queueBuffer(dri2_surf->window, dri2_surf->buffer,
142                                   fence_fd);
143 #else
144    dri2_surf->window->queueBuffer(dri2_surf->window, dri2_surf->buffer);
145 #endif
146
147    dri2_surf->buffer->common.decRef(&dri2_surf->buffer->common);
148    dri2_surf->buffer = NULL;
149
150    return EGL_TRUE;
151 }
152
153 static void
154 droid_window_cancel_buffer(struct dri2_egl_surface *dri2_surf)
155 {
156    /* no cancel buffer? */
157    droid_window_enqueue_buffer(dri2_surf);
158 }
159
160 static __DRIbuffer *
161 droid_alloc_local_buffer(struct dri2_egl_surface *dri2_surf,
162                          unsigned int att, unsigned int format)
163 {
164    struct dri2_egl_display *dri2_dpy =
165       dri2_egl_display(dri2_surf->base.Resource.Display);
166
167    if (att >= ARRAY_SIZE(dri2_surf->local_buffers))
168       return NULL;
169
170    if (!dri2_surf->local_buffers[att]) {
171       dri2_surf->local_buffers[att] =
172          dri2_dpy->dri2->allocateBuffer(dri2_dpy->dri_screen, att, format,
173                dri2_surf->base.Width, dri2_surf->base.Height);
174    }
175
176    return dri2_surf->local_buffers[att];
177 }
178
179 static void
180 droid_free_local_buffers(struct dri2_egl_surface *dri2_surf)
181 {
182    struct dri2_egl_display *dri2_dpy =
183       dri2_egl_display(dri2_surf->base.Resource.Display);
184    int i;
185
186    for (i = 0; i < ARRAY_SIZE(dri2_surf->local_buffers); i++) {
187       if (dri2_surf->local_buffers[i]) {
188          dri2_dpy->dri2->releaseBuffer(dri2_dpy->dri_screen,
189                dri2_surf->local_buffers[i]);
190          dri2_surf->local_buffers[i] = NULL;
191       }
192    }
193 }
194
195 static _EGLSurface *
196 droid_create_surface(_EGLDriver *drv, _EGLDisplay *disp, EGLint type,
197                     _EGLConfig *conf, EGLNativeWindowType window,
198                     const EGLint *attrib_list)
199 {
200    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
201    struct dri2_egl_config *dri2_conf = dri2_egl_config(conf);
202    struct dri2_egl_surface *dri2_surf;
203    dri2_surf = calloc(1, sizeof *dri2_surf);
204    if (!dri2_surf) {
205       _eglError(EGL_BAD_ALLOC, "droid_create_surface");
206       return NULL;
207    }
208
209    if (!_eglInitSurface(&dri2_surf->base, disp, type, conf, attrib_list))
210       goto cleanup_surface;
211
212    if (type == EGL_WINDOW_BIT) {
213       int format;
214
215       if (!window || window->common.magic != ANDROID_NATIVE_WINDOW_MAGIC) {
216          _eglError(EGL_BAD_NATIVE_WINDOW, "droid_create_surface");
217          goto cleanup_surface;
218       }
219       if (window->query(window, NATIVE_WINDOW_FORMAT, &format)) {
220          _eglError(EGL_BAD_NATIVE_WINDOW, "droid_create_surface");
221          goto cleanup_surface;
222       }
223
224       if (format != dri2_conf->base.NativeVisualID) {
225          _eglLog(_EGL_WARNING, "Native format mismatch: 0x%x != 0x%x",
226                format, dri2_conf->base.NativeVisualID);
227       }
228
229       window->query(window, NATIVE_WINDOW_WIDTH, &dri2_surf->base.Width);
230       window->query(window, NATIVE_WINDOW_HEIGHT, &dri2_surf->base.Height);
231    }
232
233    dri2_surf->dri_drawable =
234       (*dri2_dpy->dri2->createNewDrawable)(dri2_dpy->dri_screen,
235                                            dri2_conf->dri_double_config,
236                                            dri2_surf);
237    if (dri2_surf->dri_drawable == NULL) {
238       _eglError(EGL_BAD_ALLOC, "dri2->createNewDrawable");
239       goto cleanup_surface;
240    }
241
242    if (window) {
243       window->common.incRef(&window->common);
244       dri2_surf->window = window;
245    }
246
247    return &dri2_surf->base;
248
249 cleanup_surface:
250    free(dri2_surf);
251
252    return NULL;
253 }
254
255 static _EGLSurface *
256 droid_create_window_surface(_EGLDriver *drv, _EGLDisplay *disp,
257                            _EGLConfig *conf, EGLNativeWindowType window,
258                            const EGLint *attrib_list)
259 {
260    return droid_create_surface(drv, disp, EGL_WINDOW_BIT, conf,
261                               window, attrib_list);
262 }
263
264 static _EGLSurface *
265 droid_create_pbuffer_surface(_EGLDriver *drv, _EGLDisplay *disp,
266                             _EGLConfig *conf, const EGLint *attrib_list)
267 {
268    return droid_create_surface(drv, disp, EGL_PBUFFER_BIT, conf,
269                               NULL, attrib_list);
270 }
271
272 static EGLBoolean
273 droid_destroy_surface(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *surf)
274 {
275    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
276    struct dri2_egl_surface *dri2_surf = dri2_egl_surface(surf);
277
278    if (!_eglPutSurface(surf))
279       return EGL_TRUE;
280
281    droid_free_local_buffers(dri2_surf);
282
283    if (dri2_surf->base.Type == EGL_WINDOW_BIT) {
284       if (dri2_surf->buffer)
285          droid_window_cancel_buffer(dri2_surf);
286
287       dri2_surf->window->common.decRef(&dri2_surf->window->common);
288    }
289
290    (*dri2_dpy->core->destroyDrawable)(dri2_surf->dri_drawable);
291
292    free(dri2_surf);
293
294    return EGL_TRUE;
295 }
296
297 static EGLBoolean
298 droid_swap_buffers(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *draw)
299 {
300    struct dri2_egl_driver *dri2_drv = dri2_egl_driver(drv);
301    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
302    struct dri2_egl_surface *dri2_surf = dri2_egl_surface(draw);
303    _EGLContext *ctx;
304
305    if (dri2_surf->base.Type != EGL_WINDOW_BIT)
306       return EGL_TRUE;
307
308    if (dri2_drv->glFlush) {
309       ctx = _eglGetCurrentContext();
310       if (ctx && ctx->DrawSurface == &dri2_surf->base)
311          dri2_drv->glFlush();
312    }
313
314    (*dri2_dpy->flush->flush)(dri2_surf->dri_drawable);
315
316    if (dri2_surf->buffer)
317       droid_window_enqueue_buffer(dri2_surf);
318
319    (*dri2_dpy->flush->invalidate)(dri2_surf->dri_drawable);
320
321    return EGL_TRUE;
322 }
323
324 static _EGLImage *
325 dri2_create_image_android_native_buffer(_EGLDisplay *disp, _EGLContext *ctx,
326                                         struct ANativeWindowBuffer *buf)
327 {
328    struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
329    struct dri2_egl_image *dri2_img;
330    int name;
331    EGLint format;
332
333    if (ctx != NULL) {
334       /* From the EGL_ANDROID_image_native_buffer spec:
335        *
336        *     * If <target> is EGL_NATIVE_BUFFER_ANDROID and <ctx> is not
337        *       EGL_NO_CONTEXT, the error EGL_BAD_CONTEXT is generated.
338        */
339       _eglError(EGL_BAD_CONTEXT, "eglCreateEGLImageKHR: for "
340                 "EGL_NATIVE_BUFFER_ANDROID, the context must be "
341                 "EGL_NO_CONTEXT");
342       return NULL;
343    }
344
345    if (!buf || buf->common.magic != ANDROID_NATIVE_BUFFER_MAGIC ||
346        buf->common.version != sizeof(*buf)) {
347       _eglError(EGL_BAD_PARAMETER, "eglCreateEGLImageKHR");
348       return NULL;
349    }
350
351    name = get_native_buffer_name(buf);
352    if (!name) {
353       _eglError(EGL_BAD_PARAMETER, "eglCreateEGLImageKHR");
354       return NULL;
355    }
356
357    /* see the table in droid_add_configs_for_visuals */
358    switch (buf->format) {
359    case HAL_PIXEL_FORMAT_BGRA_8888:
360       format = __DRI_IMAGE_FORMAT_ARGB8888;
361       break;
362    case HAL_PIXEL_FORMAT_RGB_565:
363       format = __DRI_IMAGE_FORMAT_RGB565;
364       break;
365    case HAL_PIXEL_FORMAT_RGBA_8888:
366       format = __DRI_IMAGE_FORMAT_ABGR8888;
367       break;
368    case HAL_PIXEL_FORMAT_RGBX_8888:
369       format = __DRI_IMAGE_FORMAT_XBGR8888;
370       break;
371    case HAL_PIXEL_FORMAT_RGB_888:
372    case HAL_PIXEL_FORMAT_RGBA_5551:
373    case HAL_PIXEL_FORMAT_RGBA_4444:
374       /* unsupported */
375    default:
376       _eglLog(_EGL_WARNING, "unsupported native buffer format 0x%x", buf->format);
377       return NULL;
378       break;
379    }
380
381    dri2_img = calloc(1, sizeof(*dri2_img));
382    if (!dri2_img) {
383       _eglError(EGL_BAD_ALLOC, "droid_create_image_mesa_drm");
384       return NULL;
385    }
386
387    if (!_eglInitImage(&dri2_img->base, disp)) {
388       free(dri2_img);
389       return NULL;
390    }
391
392    dri2_img->dri_image =
393       dri2_dpy->image->createImageFromName(dri2_dpy->dri_screen,
394                                            buf->width,
395                                            buf->height,
396                                            format,
397                                            name,
398                                            buf->stride,
399                                            dri2_img);
400    if (!dri2_img->dri_image) {
401       free(dri2_img);
402       _eglError(EGL_BAD_ALLOC, "droid_create_image_mesa_drm");
403       return NULL;
404    }
405
406    return &dri2_img->base;
407 }
408
409 static _EGLImage *
410 droid_create_image_khr(_EGLDriver *drv, _EGLDisplay *disp,
411                        _EGLContext *ctx, EGLenum target,
412                        EGLClientBuffer buffer, const EGLint *attr_list)
413 {
414    switch (target) {
415    case EGL_NATIVE_BUFFER_ANDROID:
416       return dri2_create_image_android_native_buffer(disp, ctx,
417             (struct ANativeWindowBuffer *) buffer);
418    default:
419       return dri2_create_image_khr(drv, disp, ctx, target, buffer, attr_list);
420    }
421 }
422
423 static void
424 droid_flush_front_buffer(__DRIdrawable * driDrawable, void *loaderPrivate)
425 {
426 }
427
428 static int
429 droid_get_buffers_parse_attachments(struct dri2_egl_surface *dri2_surf,
430                                     unsigned int *attachments, int count)
431 {
432    int num_buffers = 0, i;
433
434    /* fill dri2_surf->buffers */
435    for (i = 0; i < count * 2; i += 2) {
436       __DRIbuffer *buf, *local;
437
438       assert(num_buffers < ARRAY_SIZE(dri2_surf->buffers));
439       buf = &dri2_surf->buffers[num_buffers];
440
441       switch (attachments[i]) {
442       case __DRI_BUFFER_BACK_LEFT:
443          if (dri2_surf->base.Type == EGL_WINDOW_BIT) {
444             buf->attachment = attachments[i];
445             buf->name = get_native_buffer_name(dri2_surf->buffer);
446             buf->cpp = get_format_bpp(dri2_surf->buffer->format);
447             buf->pitch = dri2_surf->buffer->stride * buf->cpp;
448             buf->flags = 0;
449
450             if (buf->name)
451                num_buffers++;
452
453             break;
454          }
455          /* fall through for pbuffers */
456       case __DRI_BUFFER_DEPTH:
457       case __DRI_BUFFER_STENCIL:
458       case __DRI_BUFFER_ACCUM:
459       case __DRI_BUFFER_DEPTH_STENCIL:
460       case __DRI_BUFFER_HIZ:
461          local = droid_alloc_local_buffer(dri2_surf,
462                attachments[i], attachments[i + 1]);
463
464          if (local) {
465             *buf = *local;
466             num_buffers++;
467          }
468          break;
469       case __DRI_BUFFER_FRONT_LEFT:
470       case __DRI_BUFFER_FRONT_RIGHT:
471       case __DRI_BUFFER_FAKE_FRONT_LEFT:
472       case __DRI_BUFFER_FAKE_FRONT_RIGHT:
473       case __DRI_BUFFER_BACK_RIGHT:
474       default:
475          /* no front or right buffers */
476          break;
477       }
478    }
479
480    return num_buffers;
481 }
482
483 static __DRIbuffer *
484 droid_get_buffers_with_format(__DRIdrawable * driDrawable,
485                              int *width, int *height,
486                              unsigned int *attachments, int count,
487                              int *out_count, void *loaderPrivate)
488 {
489    struct dri2_egl_surface *dri2_surf = loaderPrivate;
490    struct dri2_egl_display *dri2_dpy =
491       dri2_egl_display(dri2_surf->base.Resource.Display);
492    int i;
493
494    if (dri2_surf->base.Type == EGL_WINDOW_BIT) {
495       /* try to dequeue the next back buffer */
496       if (!dri2_surf->buffer && !droid_window_dequeue_buffer(dri2_surf))
497          return NULL;
498
499       /* free outdated buffers and update the surface size */
500       if (dri2_surf->base.Width != dri2_surf->buffer->width ||
501           dri2_surf->base.Height != dri2_surf->buffer->height) {
502          droid_free_local_buffers(dri2_surf);
503          dri2_surf->base.Width = dri2_surf->buffer->width;
504          dri2_surf->base.Height = dri2_surf->buffer->height;
505       }
506    }
507
508    dri2_surf->buffer_count =
509       droid_get_buffers_parse_attachments(dri2_surf, attachments, count);
510
511    if (width)
512       *width = dri2_surf->base.Width;
513    if (height)
514       *height = dri2_surf->base.Height;
515
516    *out_count = dri2_surf->buffer_count;;
517
518    return dri2_surf->buffers;
519 }
520
521 static EGLBoolean
522 droid_add_configs_for_visuals(_EGLDriver *drv, _EGLDisplay *dpy)
523 {
524    struct dri2_egl_display *dri2_dpy = dri2_egl_display(dpy);
525    const struct {
526       int format;
527       unsigned int rgba_masks[4];
528    } visuals[] = {
529       { HAL_PIXEL_FORMAT_RGBA_8888, { 0xff, 0xff00, 0xff0000, 0xff000000 } },
530       { HAL_PIXEL_FORMAT_RGBX_8888, { 0xff, 0xff00, 0xff0000, 0x0 } },
531       { HAL_PIXEL_FORMAT_RGB_888,   { 0xff, 0xff00, 0xff0000, 0x0 } },
532       { HAL_PIXEL_FORMAT_RGB_565,   { 0xf800, 0x7e0, 0x1f, 0x0 } },
533       { HAL_PIXEL_FORMAT_BGRA_8888, { 0xff0000, 0xff00, 0xff, 0xff000000 } },
534       { 0, 0, { 0, 0, 0, 0 } }
535    };
536    int count, i, j;
537
538    count = 0;
539    for (i = 0; visuals[i].format; i++) {
540       int format_count = 0;
541
542       for (j = 0; dri2_dpy->driver_configs[j]; j++) {
543          const EGLint surface_type = EGL_WINDOW_BIT | EGL_PBUFFER_BIT;
544          struct dri2_egl_config *dri2_conf;
545          unsigned int double_buffered = 0;
546
547          dri2_dpy->core->getConfigAttrib(dri2_dpy->driver_configs[j],
548             __DRI_ATTRIB_DOUBLE_BUFFER, &double_buffered);
549
550          /* support only double buffered configs */
551          if (!double_buffered)
552             continue;
553
554          dri2_conf = dri2_add_config(dpy, dri2_dpy->driver_configs[j],
555                count + 1, surface_type, NULL, visuals[i].rgba_masks);
556          if (dri2_conf) {
557             dri2_conf->base.NativeVisualID = visuals[i].format;
558             dri2_conf->base.NativeVisualType = visuals[i].format;
559             count++;
560             format_count++;
561          }
562       }
563
564       if (!format_count) {
565          _eglLog(_EGL_DEBUG, "No DRI config supports native format 0x%x",
566                visuals[i].format);
567       }
568    }
569
570    /* post-process configs */
571    for (i = 0; i < dpy->Configs->Size; i++) {
572       struct dri2_egl_config *dri2_conf = dri2_egl_config(dpy->Configs->Elements[i]);
573
574       /* there is no front buffer so no OpenGL */
575       dri2_conf->base.RenderableType &= ~EGL_OPENGL_BIT;
576       dri2_conf->base.Conformant &= ~EGL_OPENGL_BIT;
577    }
578
579    return (count != 0);
580 }
581
582 static int
583 droid_open_device(void)
584 {
585    const hw_module_t *mod;
586    int fd = -1, err;
587
588    err = hw_get_module(GRALLOC_HARDWARE_MODULE_ID, &mod);
589    if (!err) {
590       const gralloc_module_t *gr = (gralloc_module_t *) mod;
591
592       err = -EINVAL;
593       if (gr->perform)
594          err = gr->perform(gr, GRALLOC_MODULE_PERFORM_GET_DRM_FD, &fd);
595    }
596    if (err || fd < 0) {
597       _eglLog(_EGL_WARNING, "fail to get drm fd");
598       fd = -1;
599    }
600
601    return (fd >= 0) ? dup(fd) : -1;
602 }
603
604 /* support versions < JellyBean */
605 #ifndef ALOGW
606 #define ALOGW LOGW
607 #endif
608 #ifndef ALOGD
609 #define ALOGD LOGD
610 #endif
611 #ifndef ALOGI
612 #define ALOGI LOGI
613 #endif
614
615 static void
616 droid_log(EGLint level, const char *msg)
617 {
618    switch (level) {
619    case _EGL_DEBUG:
620       ALOGD("%s", msg);
621       break;
622    case _EGL_INFO:
623       ALOGI("%s", msg);
624       break;
625    case _EGL_WARNING:
626       ALOGW("%s", msg);
627       break;
628    case _EGL_FATAL:
629       LOG_FATAL("%s", msg);
630       break;
631    default:
632       break;
633    }
634 }
635
636 static struct dri2_egl_display_vtbl droid_display_vtbl = {
637    .authenticate = NULL,
638    .create_window_surface = droid_create_window_surface,
639    .create_pixmap_surface = dri2_fallback_pixmap_surface,
640    .create_pbuffer_surface = droid_create_pbuffer_surface,
641    .destroy_surface = droid_destroy_surface,
642    .create_image = droid_create_image_khr,
643    .swap_interval = dri2_fallback_swap_interval,
644    .swap_buffers = droid_swap_buffers,
645    .swap_buffers_with_damage = dri2_fallback_swap_buffers_with_damage,
646    .swap_buffers_region = dri2_fallback_swap_buffers_region,
647    .post_sub_buffer = dri2_fallback_post_sub_buffer,
648    .copy_buffers = dri2_fallback_copy_buffers,
649    .query_buffer_age = dri2_fallback_query_buffer_age,
650    .create_wayland_buffer_from_image = dri2_fallback_create_wayland_buffer_from_image,
651 };
652
653 EGLBoolean
654 dri2_initialize_android(_EGLDriver *drv, _EGLDisplay *dpy)
655 {
656    struct dri2_egl_display *dri2_dpy;
657    const char *err;
658
659    _eglSetLogProc(droid_log);
660
661    loader_set_logger(_eglLog);
662
663    dri2_dpy = calloc(1, sizeof(*dri2_dpy));
664    if (!dri2_dpy)
665       return _eglError(EGL_BAD_ALLOC, "eglInitialize");
666
667    dpy->DriverData = (void *) dri2_dpy;
668
669    dri2_dpy->fd = droid_open_device();
670    if (dri2_dpy->fd < 0) {
671       err = "DRI2: failed to open device";
672       goto cleanup_display;
673    }
674
675    dri2_dpy->driver_name = loader_get_driver_for_fd(dri2_dpy->fd, 0);
676    if (dri2_dpy->driver_name == NULL) {
677       err = "DRI2: failed to get driver name";
678       goto cleanup_device;
679    }
680
681    if (!dri2_load_driver(dpy)) {
682       err = "DRI2: failed to load driver";
683       goto cleanup_driver_name;
684    }
685
686    dri2_dpy->dri2_loader_extension.base.name = __DRI_DRI2_LOADER;
687    dri2_dpy->dri2_loader_extension.base.version = 3;
688    dri2_dpy->dri2_loader_extension.getBuffers = NULL;
689    dri2_dpy->dri2_loader_extension.flushFrontBuffer = droid_flush_front_buffer;
690    dri2_dpy->dri2_loader_extension.getBuffersWithFormat =
691       droid_get_buffers_with_format;
692
693    dri2_dpy->extensions[0] = &dri2_dpy->dri2_loader_extension.base;
694    dri2_dpy->extensions[1] = &image_lookup_extension.base;
695    dri2_dpy->extensions[2] = &use_invalidate.base;
696    dri2_dpy->extensions[3] = NULL;
697
698    if (!dri2_create_screen(dpy)) {
699       err = "DRI2: failed to create screen";
700       goto cleanup_driver;
701    }
702
703    if (!droid_add_configs_for_visuals(drv, dpy)) {
704       err = "DRI2: failed to add configs";
705       goto cleanup_screen;
706    }
707
708    dpy->Extensions.ANDROID_image_native_buffer = EGL_TRUE;
709    dpy->Extensions.KHR_image_base = EGL_TRUE;
710
711    /* we're supporting EGL 1.4 */
712    dpy->VersionMajor = 1;
713    dpy->VersionMinor = 4;
714
715    /* Fill vtbl last to prevent accidentally calling virtual function during
716     * initialization.
717     */
718    dri2_dpy->vtbl = &droid_display_vtbl;
719
720    return EGL_TRUE;
721
722 cleanup_screen:
723    dri2_dpy->core->destroyScreen(dri2_dpy->dri_screen);
724 cleanup_driver:
725    dlclose(dri2_dpy->driver);
726 cleanup_driver_name:
727    free(dri2_dpy->driver_name);
728 cleanup_device:
729    close(dri2_dpy->fd);
730 cleanup_display:
731    free(dri2_dpy);
732
733    return _eglError(EGL_NOT_INITIALIZED, err);
734 }