diff options
Diffstat (limited to 'backend/headless/output.c')
-rw-r--r-- | backend/headless/output.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backend/headless/output.c b/backend/headless/output.c index 9c479cde..4b748dbf 100644 --- a/backend/headless/output.c +++ b/backend/headless/output.c @@ -30,7 +30,7 @@ static bool output_set_custom_mode(struct wlr_output *wlr_output, int32_t width, } 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); @@ -73,7 +73,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); } |