aboutsummaryrefslogtreecommitdiff
path: root/include/ui
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@redhat.com>2022-02-16 19:33:37 +0400
committerMarc-André Lureau <marcandre.lureau@redhat.com>2022-03-14 15:16:01 +0400
commita62c4a178fb154a3b810870502cb4c63a6b4cf28 (patch)
treec548b0ce1df3ec573a03a2335e8d17fd04289084 /include/ui
parent398d1c91ed58fb7fe3dd3e9596519678c816bb69 (diff)
downloadqemu-a62c4a178fb154a3b810870502cb4c63a6b4cf28.zip
qemu-a62c4a178fb154a3b810870502cb4c63a6b4cf28.tar.gz
qemu-a62c4a178fb154a3b810870502cb4c63a6b4cf28.tar.bz2
ui/console: move dcl compatiblity check to a callback
As expected from the "compatible_dcl" comment, a simple comparison of ops isn't enough. The following patch will fix a regression introduced by this limited check by extending the compatibility callback for egl-headless. For now, this patch simply replaces the the "compatible_dcl" ops pointer with a "dpy_gl_ctx_is_compatible_ctx" callback. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Acked-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'include/ui')
-rw-r--r--include/ui/console.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/include/ui/console.h b/include/ui/console.h
index f590819..18a10c0 100644
--- a/include/ui/console.h
+++ b/include/ui/console.h
@@ -282,13 +282,8 @@ struct DisplayChangeListener {
};
typedef struct DisplayGLCtxOps {
- /*
- * We only check if the GLCtx is compatible with a DCL via ops. A natural
- * evolution of this would be a callback to check some runtime requirements
- * and allow various DCL kinds.
- */
- const DisplayChangeListenerOps *compatible_dcl;
-
+ bool (*dpy_gl_ctx_is_compatible_dcl)(DisplayGLCtx *dgc,
+ DisplayChangeListener *dcl);
QEMUGLContext (*dpy_gl_ctx_create)(DisplayGLCtx *dgc,
QEMUGLParams *params);
void (*dpy_gl_ctx_destroy)(DisplayGLCtx *dgc,