aboutsummaryrefslogtreecommitdiff
path: root/backend/headless
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2018-04-25 08:33:41 +0100
committerGitHub <noreply@github.com>2018-04-25 08:33:41 +0100
commit99e9f08c4add8f0d77c94d1b37daaec25809cf26 (patch)
tree240bcac75264906411ef9f454dced46f71702649 /backend/headless
parentc40f86d27f611a2b34cead63e63c12d6a18263eb (diff)
parent018b82c01e642aae45dace95c5aae5d489e98853 (diff)
Merge pull request #903 from emersion/wlr-egl-destroy-surface
render/egl: add wlr_egl_destroy_surface
Diffstat (limited to 'backend/headless')
-rw-r--r--backend/headless/output.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/backend/headless/output.c b/backend/headless/output.c
index 9c479cde..f71b4cdb 100644
--- a/backend/headless/output.c
+++ b/backend/headless/output.c
@@ -29,9 +29,7 @@ static bool output_set_custom_mode(struct wlr_output *wlr_output, int32_t width,
refresh = HEADLESS_DEFAULT_REFRESH;
}
- if (output->egl_surface) {
- eglDestroySurface(backend->egl.display, output->egl_surface);
- }
+ wlr_egl_destroy_surface(&backend->egl, output->egl_surface);
output->egl_surface = egl_create_surface(&backend->egl, width, height);
if (output->egl_surface == EGL_NO_SURFACE) {
@@ -73,7 +71,7 @@ static void output_destroy(struct wlr_output *wlr_output) {
wl_event_source_remove(output->frame_timer);
- eglDestroySurface(output->backend->egl.display, output->egl_surface);
+ wlr_egl_destroy_surface(&output->backend->egl, output->egl_surface);
free(output);
}