diff options
author | Vivek Kasireddy | 2021-05-27 01:14:26 +0200 |
---|---|---|
committer | Gerd Hoffmann | 2021-05-27 12:07:37 +0200 |
commit | 5752519e93e2783c7fdca15b3480eb0f8687fb94 (patch) | |
tree | 3242527bfac6aa1453371163bf585bb14f66b59a /stubs | |
parent | ui/pixman: Add qemu_pixman_to_drm_format() (diff) | |
download | qemu-5752519e93e2783c7fdca15b3480eb0f8687fb94.tar.gz qemu-5752519e93e2783c7fdca15b3480eb0f8687fb94.tar.xz qemu-5752519e93e2783c7fdca15b3480eb0f8687fb94.zip |
virtio-gpu: Add helpers to create and destroy dmabuf objects
These helpers can be useful for creating dmabuf objects from blobs
and submitting them to the UI.
Cc: Gerd Hoffmann <kraxel@redhat.com>
Signed-off-by: Vivek Kasireddy <vivek.kasireddy@intel.com>
Message-Id: <20210526231429.1045476-12-vivek.kasireddy@intel.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'stubs')
-rw-r--r-- | stubs/virtio-gpu-udmabuf.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/stubs/virtio-gpu-udmabuf.c b/stubs/virtio-gpu-udmabuf.c index e962e00d86..81f661441a 100644 --- a/stubs/virtio-gpu-udmabuf.c +++ b/stubs/virtio-gpu-udmabuf.c @@ -16,3 +16,12 @@ void virtio_gpu_fini_udmabuf(struct virtio_gpu_simple_resource *res) { /* nothing (stub) */ } + +int virtio_gpu_update_dmabuf(VirtIOGPU *g, + uint32_t scanout_id, + struct virtio_gpu_simple_resource *res, + struct virtio_gpu_framebuffer *fb) +{ + /* nothing (stub) */ + return 0; +} |