[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 12/12] ui/console: call gfx_switch() even if the current scanout i
From: |
marcandre . lureau |
Subject: |
[PULL 12/12] ui/console: call gfx_switch() even if the current scanout is GL |
Date: |
Mon, 14 Mar 2022 16:59:40 +0400 |
From: Marc-André Lureau <marcandre.lureau@redhat.com>
egl-headless depends on the backing surface to be set before texture are
set and updated. Display it (update=true) iff the current scanout kind
is SURFACE.
Reported-by: Akihiko Odaki <akihiko.odaki@gmail.com>
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Acked-by: Gerd Hoffmann <kraxel@redhat.com>
---
ui/console.c | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/ui/console.c b/ui/console.c
index 5bfecea4549e..16a0b0909ba2 100644
--- a/ui/console.c
+++ b/ui/console.c
@@ -1112,6 +1112,10 @@ static void
displaychangelistener_display_console(DisplayChangeListener *dcl,
return;
}
+ dpy_gfx_create_texture(con, con->surface);
+ displaychangelistener_gfx_switch(dcl, con->surface,
+ con->scanout.kind == SCANOUT_SURFACE);
+
if (con->scanout.kind == SCANOUT_DMABUF &&
displaychangelistener_has_dmabuf(dcl)) {
dcl->ops->dpy_gl_scanout_dmabuf(dcl, con->scanout.dmabuf);
@@ -1126,9 +1130,6 @@ static void
displaychangelistener_display_console(DisplayChangeListener *dcl,
con->scanout.texture.y,
con->scanout.texture.width,
con->scanout.texture.height);
- } else if (con->scanout.kind == SCANOUT_SURFACE) {
- dpy_gfx_create_texture(con, con->surface);
- displaychangelistener_gfx_switch(dcl, con->surface, TRUE);
}
}
--
2.35.1.273.ge6ebfd0e8cbb
- [PULL 01/12] ui/console: move check for compatible GL context, (continued)
- [PULL 01/12] ui/console: move check for compatible GL context, marcandre . lureau, 2022/03/14
- [PULL 02/12] ui/console: move dcl compatiblity check to a callback, marcandre . lureau, 2022/03/14
- [PULL 03/12] ui/console: egl-headless is compatible with non-gl listeners, marcandre . lureau, 2022/03/14
- [PULL 04/12] ui/dbus: associate the DBusDisplayConsole listener with the given console, marcandre . lureau, 2022/03/14
- [PULL 05/12] ui/console: move console compatibility check to dcl_display_console(), marcandre . lureau, 2022/03/14
- [PULL 06/12] ui/shader: fix potential leak of shader on error, marcandre . lureau, 2022/03/14
- [PULL 08/12] ui/console: add a dpy_gfx_switch callback helper, marcandre . lureau, 2022/03/14
- [PULL 09/12] ui/console: optionally update after gfx switch, marcandre . lureau, 2022/03/14
- [PULL 07/12] ui/shader: free associated programs, marcandre . lureau, 2022/03/14
- [PULL 10/12] ui/dbus: fix texture sharing, marcandre . lureau, 2022/03/14
- [PULL 12/12] ui/console: call gfx_switch() even if the current scanout is GL,
marcandre . lureau <=
- [PULL 11/12] ui/dbus: do not send 2d scanout until gfx_update, marcandre . lureau, 2022/03/14
- Re: [PULL 00/12] dbus console fixes, Peter Maydell, 2022/03/14