aboutsummaryrefslogtreecommitdiff
path: root/backend/headless/output.c
diff options
context:
space:
mode:
Diffstat (limited to 'backend/headless/output.c')
-rw-r--r--backend/headless/output.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/backend/headless/output.c b/backend/headless/output.c
index 822afac9..32c2a7fd 100644
--- a/backend/headless/output.c
+++ b/backend/headless/output.c
@@ -140,13 +140,12 @@ static bool output_commit(struct wlr_output *wlr_output) {
return true;
}
-static void output_rollback(struct wlr_output *wlr_output) {
+static void output_rollback_render(struct wlr_output *wlr_output) {
struct wlr_headless_output *output =
headless_output_from_output(wlr_output);
- if (wlr_output->pending.committed & WLR_OUTPUT_STATE_BUFFER) {
- glBindFramebuffer(GL_FRAMEBUFFER, 0);
- wlr_egl_unset_current(output->backend->egl);
- }
+ assert(wlr_egl_is_current(output->backend->egl));
+ glBindFramebuffer(GL_FRAMEBUFFER, 0);
+ wlr_egl_unset_current(output->backend->egl);
}
static void output_destroy(struct wlr_output *wlr_output) {
@@ -162,7 +161,7 @@ static const struct wlr_output_impl output_impl = {
.destroy = output_destroy,
.attach_render = output_attach_render,
.commit = output_commit,
- .rollback = output_rollback,
+ .rollback_render = output_rollback_render,
};
bool wlr_output_is_headless(struct wlr_output *wlr_output) {