From 4a76401c34c2f58cdb7acf16a026766efca6db0e Mon Sep 17 00:00:00 2001 From: Quantum Date: Wed, 29 Sep 2021 03:56:07 -0400 Subject: [PATCH] [client] egl: make the last eglDestroyImage call indirect Missed this one in the last PR. --- client/renderers/EGL/texture_dmabuf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/renderers/EGL/texture_dmabuf.c b/client/renderers/EGL/texture_dmabuf.c index 931beb92..be9d286b 100644 --- a/client/renderers/EGL/texture_dmabuf.c +++ b/client/renderers/EGL/texture_dmabuf.c @@ -48,7 +48,7 @@ static void egl_texDMABUFCleanup(TexDMABUF * this) { struct FdImage * image; vector_forEachRef(image, &this->images) - eglDestroyImage(this->display, image->image); + g_egl_dynProcs.eglDestroyImage(this->display, image->image); vector_clear(&this->images); }