From d3bd5f2a7ba83567983c4a53ee6a69c3f8f6b25f Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Mon, 6 Apr 2020 11:43:58 +0200 Subject: backend: reset EGL surface after buffer swap This prevents GL commands to affect a previously current EGL surface after a buffer swap. --- backend/headless/output.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'backend/headless') diff --git a/backend/headless/output.c b/backend/headless/output.c index 326c9605..18847af0 100644 --- a/backend/headless/output.c +++ b/backend/headless/output.c @@ -71,6 +71,9 @@ static bool output_test(struct wlr_output *wlr_output) { } static bool output_commit(struct wlr_output *wlr_output) { + struct wlr_headless_output *output = + headless_output_from_output(wlr_output); + if (!output_test(wlr_output)) { return false; } @@ -89,6 +92,8 @@ static bool output_commit(struct wlr_output *wlr_output) { wlr_output_send_present(wlr_output, NULL); } + wlr_egl_make_current(&output->backend->egl, EGL_NO_SURFACE, NULL); + return true; } -- cgit v1.2.3