mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-24 00:50:30 +01:00
Android: fix compile error for DRI2 loader getCapability
Fix compile failure from commit1bf703e4ea("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>
This commit is contained in:
parent
90c8f17cf8
commit
be5773fa8d
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Reference in a new issue