[client] egl: make the last eglDestroyImage call indirect

Missed this one in the last PR.
This commit is contained in:
Quantum 2021-09-29 03:56:07 -04:00 committed by Geoffrey McRae
parent 072c54977e
commit 4a76401c34

View File

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