mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-12-15 08:56:26 -05:00
render/egl: add wlr_egl_destroy_surface
This commit is contained in:
parent
c40f86d27f
commit
eaed6bd03b
7 changed files with 15 additions and 10 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue