|
| From: | Akihiko Odaki |
| Subject: | Re: [PATCH v3 12/12] ui/console: call gfx_switch() even if the current scanout is GL |
| Date: | Mon, 7 Mar 2022 19:34:56 +0900 |
| User-agent: | Mozilla/5.0 (X11; Linux aarch64; rv:91.0) Gecko/20100101 Thunderbird/91.5.0 |
On 2022/03/07 19:19, Marc-André Lureau wrote:
Hi Akihiko On Mon, Mar 7, 2022 at 12:09 PM Akihiko Odaki <akihiko.odaki@gmail.com> wrote:On 2022/03/07 16:46, marcandre.lureau@redhat.com wrote: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.egl-headless does not dynamically call register_displaychangelistener and has console associated (console_select would not affect egl-headless itself) so this should not be necessary.Could you help me understand, what should not be necessary?
I read the description as it sets the backing surface for egl-headless when register_displaychangelistener or console_select is called. The change is not necessary.
The remaining problem with egl-headless is that egl-headless renders the image to DisplaySurface, and a non-OpenGL display (namely vnc) has to consume it instead of texture even when con->scanout.kind is SCANOUT_TEXTURE or SCANOUT_DMABUF.This is already happening, because egl-headless calls dpy_gfx_update().
It is not called when register_displaychangelistener or console_select is called by non-OpenGL display consuming the DisplaySurface.
Regards, Akihiko Odaki
thanksRegards, Akihiko OdakiReported-by: Akihiko Odaki <akihiko.odaki@gmail.com> Signed-off-by: Marc-André Lureau <marcandre.lureau@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); } }
| [Prev in Thread] | Current Thread | [Next in Thread] |