[client] egl: use eglCreateImage and eglDestroyImage indirectly

The dmabuf path is optional, so we shouldn't require those functions to
link our program.
This commit is contained in:
Quantum
2021-09-28 21:34:42 -04:00
committed by Geoffrey McRae
parent 5c7f168370
commit 072c54977e
4 changed files with 24 additions and 10 deletions

View File

@@ -38,6 +38,8 @@ struct EGLDynProcs
PFNGLDEBUGMESSAGECALLBACKKHRPROC glDebugMessageCallback;
PFNGLDEBUGMESSAGECALLBACKKHRPROC glDebugMessageCallbackKHR;
PFNGLBUFFERSTORAGEEXTPROC glBufferStorageEXT;
PFNEGLCREATEIMAGEPROC eglCreateImage;
PFNEGLDESTROYIMAGEPROC eglDestroyImage;
};
extern struct EGLDynProcs g_egl_dynProcs;