render/egl: add wlr_egl_destroy_surface

This commit is contained in:
emersion 2018-04-24 23:44:43 +01:00
parent c40f86d27f
commit eaed6bd03b
No known key found for this signature in database
GPG key ID: 0FDE7BE0E88F5E48
7 changed files with 15 additions and 10 deletions

View file

@ -80,7 +80,7 @@ bool wlr_drm_surface_init(struct wlr_drm_surface *surf,
gbm_surface_destroy(surf->gbm);
}
if (surf->egl) {
eglDestroySurface(surf->renderer->egl.display, surf->egl);
wlr_egl_destroy_surface(&surf->renderer->egl, surf->egl);
}
surf->gbm = gbm_surface_create(renderer->gbm, width, height,
@ -118,7 +118,7 @@ void wlr_drm_surface_finish(struct wlr_drm_surface *surf) {
}
if (surf->egl) {
eglDestroySurface(surf->renderer->egl.display, surf->egl);
wlr_egl_destroy_surface(&surf->renderer->egl, surf->egl);
}
if (surf->gbm) {
gbm_surface_destroy(surf->gbm);

View file

@ -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);
}

View file

@ -184,7 +184,7 @@ static void wlr_wl_output_destroy(struct wlr_output *wlr_output) {
wl_callback_destroy(output->frame_callback);
}
eglDestroySurface(output->backend->egl.display, output->surface);
wlr_egl_destroy_surface(&output->backend->egl, output->egl_surface);
wl_egl_window_destroy(output->egl_window);
zxdg_toplevel_v6_destroy(output->xdg_toplevel);
zxdg_surface_v6_destroy(output->xdg_surface);

View file

@ -61,7 +61,7 @@ static void output_destroy(struct wlr_output *wlr_output) {
wl_list_remove(&output->link);
wl_event_source_remove(output->frame_timer);
eglDestroySurface(x11->egl.display, output->surf);
wlr_egl_destroy_surface(&x11->egl, output->surf);
xcb_destroy_window(x11->xcb_conn, output->win);
xcb_flush(x11->xcb_conn);
free(output);