From 050e5d00da2e30766049b16c19092a042e79ab56 Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Fri, 18 Nov 2016 19:12:58 +0000 Subject: [PATCH] clients/window: use weston_platform_destroy_egl_surface wrapper v2: Use correct (destroy) API (Dan) Signed-off-by: Emil Velikov Reviewed-by: Daniel Stone --- clients/window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/window.c b/clients/window.c index 443efd72..a82f05cb 100644 --- a/clients/window.c +++ b/clients/window.c @@ -645,7 +645,7 @@ egl_window_surface_destroy(struct toysurface *base) struct display *d = surface->display; cairo_surface_destroy(surface->cairo_surface); - eglDestroySurface(d->dpy, surface->egl_surface); + weston_platform_destroy_egl_surface(d->dpy, surface->egl_surface); wl_egl_window_destroy(surface->egl_window); surface->surface = NULL;