diff options
Diffstat (limited to 'backend/x11')
-rw-r--r-- | backend/x11/output.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backend/x11/output.c b/backend/x11/output.c index 953c2ba2..07374b61 100644 --- a/backend/x11/output.c +++ b/backend/x11/output.c @@ -160,7 +160,7 @@ 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_x11_output *output = get_x11_output_from_output(wlr_output); wlr_egl_unset_current(&output->x11->egl); } @@ -170,7 +170,7 @@ static const struct wlr_output_impl output_impl = { .attach_render = output_attach_render, .test = output_test, .commit = output_commit, - .rollback = output_rollback, + .rollback_render = output_rollback_render, }; struct wlr_output *wlr_x11_output_create(struct wlr_backend *backend) { |