diff options
author | Simon Ser <contact@emersion.fr> | 2021-01-09 12:13:35 +0100 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2021-01-12 11:31:04 +0100 |
commit | 3f7e0cf5f073ef7ef88128e8661b959cc9140490 (patch) | |
tree | 6f858fae4878056ada680d36a8f18a3b6a99ff0d /backend/headless | |
parent | 1d461687d24856a15fd8c37f744f40730888c9b0 (diff) |
render/egl: remove surface and buffer age args from make_current
These aren't used anymore.
Diffstat (limited to 'backend/headless')
-rw-r--r-- | backend/headless/output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/headless/output.c b/backend/headless/output.c index ee1fd317..0ffdee79 100644 --- a/backend/headless/output.c +++ b/backend/headless/output.c @@ -52,7 +52,7 @@ static bool output_attach_render(struct wlr_output *wlr_output, return false; } - if (!wlr_egl_make_current(egl, EGL_NO_SURFACE, NULL)) { + if (!wlr_egl_make_current(egl)) { return false; } if (!wlr_renderer_bind_buffer(output->backend->renderer, |