diff options
author | Simon Ser <contact@emersion.fr> | 2019-04-23 19:26:21 +0300 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-04-23 14:34:30 -0600 |
commit | 9a0f8a194caa35173a7f590208a64a5526290935 (patch) | |
tree | 2acebd17a1de27d3d616b2bd13a65301cff9fca5 /backend/headless | |
parent | 23e37e7b1d8004fb5361c147239d2e628efbd5e8 (diff) |
output: refactor backend API
This updates the backend part of the output API. This is mostly renaming:
make_current becomes attach_render and swap_buffers becomes commit.
This also fixes the RDP backend to support NULL damage.
Diffstat (limited to 'backend/headless')
-rw-r--r-- | backend/headless/output.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/backend/headless/output.c b/backend/headless/output.c index 6d3b6f96..0073cb33 100644 --- a/backend/headless/output.c +++ b/backend/headless/output.c @@ -56,15 +56,15 @@ static void output_transform(struct wlr_output *wlr_output, output->wlr_output.transform = transform; } -static bool output_make_current(struct wlr_output *wlr_output, int *buffer_age) { +static bool output_attach_render(struct wlr_output *wlr_output, + int *buffer_age) { struct wlr_headless_output *output = headless_output_from_output(wlr_output); return wlr_egl_make_current(&output->backend->egl, output->egl_surface, buffer_age); } -static bool output_swap_buffers(struct wlr_output *wlr_output, - pixman_region32_t *damage) { +static bool output_commit(struct wlr_output *wlr_output) { // Nothing needs to be done for pbuffers wlr_output_send_present(wlr_output, NULL); return true; @@ -86,8 +86,8 @@ static const struct wlr_output_impl output_impl = { .set_custom_mode = output_set_custom_mode, .transform = output_transform, .destroy = output_destroy, - .make_current = output_make_current, - .swap_buffers = output_swap_buffers, + .attach_render = output_attach_render, + .commit = output_commit, }; bool wlr_output_is_headless(struct wlr_output *wlr_output) { |