[client] egl: dynamically import glBufferStorageEXT

On some implementations (e.g. llvmpipe), the function can only be queried via
eglGetProcAddress.
This commit is contained in:
Quantum
2021-08-18 22:55:23 -04:00
committed by Geoffrey McRae
parent 5a906131eb
commit 429620c48b
3 changed files with 7 additions and 1 deletions

View File

@@ -40,6 +40,8 @@ void egl_dynProcsInit(void)
eglGetProcAddress("glDebugMessageCallback");
g_egl_dynProcs.glDebugMessageCallbackKHR = (glDebugMessageCallback_t)
eglGetProcAddress("glDebugMessageCallbackKHR");
g_egl_dynProcs.glBufferStorageEXT = (glBufferStorageEXT_t)
eglGetProcAddress("glBufferStorageEXT");
};
#endif