diff options
author | Vivek Kasireddy <vivek.kasireddy@intel.com> | 2021-09-14 14:18:35 -0700 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2021-09-15 08:41:59 +0200 |
commit | 65b847d284c1ab8a1dbd44d2b046e87e83ebb6e0 (patch) | |
tree | 63b0281591813862f2802aa44cf4e5fda2aecc8e /include/ui/egl-helpers.h | |
parent | 121abaf3e68d620f7c4c1d16875de4a4b92fa8f8 (diff) | |
download | qemu-65b847d284c1ab8a1dbd44d2b046e87e83ebb6e0.zip qemu-65b847d284c1ab8a1dbd44d2b046e87e83ebb6e0.tar.gz qemu-65b847d284c1ab8a1dbd44d2b046e87e83ebb6e0.tar.bz2 |
ui: Create sync objects and fences only for blobs
Create sync objects and fences only for dmabufs that are blobs. Once a
fence is created (after glFlush) and is signalled,
graphic_hw_gl_flushed() will be called and virtio-gpu cmd processing
will be resumed.
Cc: Gerd Hoffmann <kraxel@redhat.com>
Signed-off-by: Vivek Kasireddy <vivek.kasireddy@intel.com>
Message-Id: <20210914211837.3229977-4-vivek.kasireddy@intel.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'include/ui/egl-helpers.h')
-rw-r--r-- | include/ui/egl-helpers.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/ui/egl-helpers.h b/include/ui/egl-helpers.h index 2c3ba92..2fb6e0d 100644 --- a/include/ui/egl-helpers.h +++ b/include/ui/egl-helpers.h @@ -19,6 +19,7 @@ typedef struct egl_fb { GLuint texture; GLuint framebuffer; bool delete_texture; + QemuDmaBuf *dmabuf; } egl_fb; void egl_fb_destroy(egl_fb *fb); |