diff mbox series

[PULL,2/5] console: add dmabuf modifier field.

Message ID 20190607131901.20107-3-kraxel@redhat.com
State New
Headers show
Series [PULL,1/5] ui/curses: Fix build with -m32 | expand

Commit Message

Gerd Hoffmann June 7, 2019, 1:18 p.m. UTC
dmabufs can have a format modifier (DRM_FORMAT_MOD_*) which is used for
tiled layouts for example.  Add a field to QemuDmaBuf so we can carry
around that information.

Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-id: 20190529072144.26737-2-kraxel@redhat.com
---
 include/ui/console.h | 1 +
 1 file changed, 1 insertion(+)
diff mbox series

Patch

diff --git a/include/ui/console.h b/include/ui/console.h
index fef900db76a5..f9816968487c 100644
--- a/include/ui/console.h
+++ b/include/ui/console.h
@@ -175,6 +175,7 @@  typedef struct QemuDmaBuf {
     uint32_t  height;
     uint32_t  stride;
     uint32_t  fourcc;
+    uint64_t  modifier;
     uint32_t  texture;
     bool      y0_top;
 } QemuDmaBuf;