Browse Source

Android: fix compile error for DRI2 loader getCapability

Fix compile failure from commit 1bf703e4ea ("dri_interface,egl,gallium:
only expose RGBA visuals on Android").

Fixes: 1bf703e4ea ("dri_interface,egl,gallium: only expose RGBA visuals on Android")
Cc: 17.2 <mesa-stable@lists.freedesktop.org>
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Signed-off-by: Rob Herring <robh@kernel.org>
tags/17.3-branchpoint
Rob Herring 8 years ago
parent
commit
be5773fa8d
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/egl/drivers/dri2/platform_android.c

+ 1
- 1
src/egl/drivers/dri2/platform_android.c View File

@@ -1142,7 +1142,7 @@ static const __DRIdri2LoaderExtension droid_dri2_loader_extension = {
.getBuffers = NULL,
.flushFrontBuffer = droid_flush_front_buffer,
.getBuffersWithFormat = droid_get_buffers_with_format,
.getCapability = droid_get_capability;
.getCapability = droid_get_capability,
};

static const __DRIimageLoaderExtension droid_image_loader_extension = {

Loading…
Cancel
Save