diff options
author | Dongwon Kim <dongwon.kim@intel.com> | 2024-05-08 10:54:03 -0700 |
---|---|---|
committer | Marc-André Lureau <marcandre.lureau@redhat.com> | 2024-05-14 17:14:12 +0400 |
commit | db81dd6bdc3425145398c6634c329c2182144d6d (patch) | |
tree | cd61e0cbd0458ae010c921252d2bd299230b2337 /include/ui | |
parent | c0fcd6334ff673b571ac068f28b6b779bdade8a2 (diff) | |
download | qemu-db81dd6bdc3425145398c6634c329c2182144d6d.zip qemu-db81dd6bdc3425145398c6634c329c2182144d6d.tar.gz qemu-db81dd6bdc3425145398c6634c329c2182144d6d.tar.bz2 |
ui/console: move QemuDmaBuf struct def to dmabuf.c
To complete privatizing process of QemuDmaBuf, QemuDmaBuf struct def
is moved to dmabuf.c
Suggested-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Cc: Philippe Mathieu-Daudé <philmd@linaro.org>
Cc: Daniel P. Berrangé <berrange@redhat.com>
Cc: Vivek Kasireddy <vivek.kasireddy@intel.com>
Signed-off-by: Dongwon Kim <dongwon.kim@intel.com>
Message-Id: <20240508175403.3399895-7-dongwon.kim@intel.com>
Diffstat (limited to 'include/ui')
-rw-r--r-- | include/ui/dmabuf.h | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/include/ui/dmabuf.h b/include/ui/dmabuf.h index 4198cdf..dc74ba8 100644 --- a/include/ui/dmabuf.h +++ b/include/ui/dmabuf.h @@ -10,24 +10,7 @@ #ifndef DMABUF_H #define DMABUF_H -typedef struct QemuDmaBuf { - int fd; - uint32_t width; - uint32_t height; - uint32_t stride; - uint32_t fourcc; - uint64_t modifier; - uint32_t texture; - uint32_t x; - uint32_t y; - uint32_t backing_width; - uint32_t backing_height; - bool y0_top; - void *sync; - int fence_fd; - bool allow_fences; - bool draw_submitted; -} QemuDmaBuf; +typedef struct QemuDmaBuf QemuDmaBuf; QemuDmaBuf *qemu_dmabuf_new(uint32_t width, uint32_t height, uint32_t stride, uint32_t x, |