mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-10-31 22:25:21 -04:00
render/egl: allow passing NULL to surface and image destructors
This commit is contained in:
parent
eaed6bd03b
commit
018b82c01e
5 changed files with 14 additions and 19 deletions
|
|
@ -79,9 +79,7 @@ bool wlr_drm_surface_init(struct wlr_drm_surface *surf,
|
|||
}
|
||||
gbm_surface_destroy(surf->gbm);
|
||||
}
|
||||
if (surf->egl) {
|
||||
wlr_egl_destroy_surface(&surf->renderer->egl, surf->egl);
|
||||
}
|
||||
wlr_egl_destroy_surface(&surf->renderer->egl, surf->egl);
|
||||
|
||||
surf->gbm = gbm_surface_create(renderer->gbm, width, height,
|
||||
format, GBM_BO_USE_RENDERING | flags);
|
||||
|
|
@ -117,9 +115,7 @@ void wlr_drm_surface_finish(struct wlr_drm_surface *surf) {
|
|||
gbm_surface_release_buffer(surf->gbm, surf->back);
|
||||
}
|
||||
|
||||
if (surf->egl) {
|
||||
wlr_egl_destroy_surface(&surf->renderer->egl, surf->egl);
|
||||
}
|
||||
wlr_egl_destroy_surface(&surf->renderer->egl, surf->egl);
|
||||
if (surf->gbm) {
|
||||
gbm_surface_destroy(surf->gbm);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
wlr_egl_destroy_surface(&backend->egl, 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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue