mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 20:28:04 +02:00
egl/android: move droid_image_loader_extension down a bit
This removes some #ifdefs. Reviewed-by: Emil Velikov <emil.velikov@collabora.com> Reviewed-by: Eric Engestrom <eric.engestrom@intel.com>
This commit is contained in:
parent
15f131b7b7
commit
49d52539fb
1 changed files with 8 additions and 10 deletions
|
|
@ -1268,17 +1268,7 @@ static const __DRIdri2LoaderExtension droid_dri2_loader_extension = {
|
|||
.getBuffersWithFormat = droid_get_buffers_with_format,
|
||||
.getCapability = droid_get_capability,
|
||||
};
|
||||
#endif /* HAVE_DRM_GRALLOC */
|
||||
|
||||
static const __DRIimageLoaderExtension droid_image_loader_extension = {
|
||||
.base = { __DRI_IMAGE_LOADER, 2 },
|
||||
|
||||
.getBuffers = droid_image_get_buffers,
|
||||
.flushFrontBuffer = droid_flush_front_buffer,
|
||||
.getCapability = droid_get_capability,
|
||||
};
|
||||
|
||||
#ifdef HAVE_DRM_GRALLOC
|
||||
static const __DRIextension *droid_dri2_loader_extensions[] = {
|
||||
&droid_dri2_loader_extension.base,
|
||||
&image_lookup_extension.base,
|
||||
|
|
@ -1290,6 +1280,14 @@ static const __DRIextension *droid_dri2_loader_extensions[] = {
|
|||
};
|
||||
#endif /* HAVE_DRM_GRALLOC */
|
||||
|
||||
static const __DRIimageLoaderExtension droid_image_loader_extension = {
|
||||
.base = { __DRI_IMAGE_LOADER, 2 },
|
||||
|
||||
.getBuffers = droid_image_get_buffers,
|
||||
.flushFrontBuffer = droid_flush_front_buffer,
|
||||
.getCapability = droid_get_capability,
|
||||
};
|
||||
|
||||
static void
|
||||
droid_display_shared_buffer(__DRIdrawable *driDrawable, int fence_fd,
|
||||
void *loaderPrivate)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue