mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2025-03-22 21:06:42 -04:00
Cleanup.
This commit is contained in:
parent
aea2cd2ce3
commit
c7a32e63cc
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ EGL_IMPORT
|
||||||
void* eglOpen()
|
void* eglOpen()
|
||||||
{
|
{
|
||||||
void* handle = bx::dlopen("libEGL." BX_DL_EXT);
|
void* handle = bx::dlopen("libEGL." BX_DL_EXT);
|
||||||
BGFX_FATAL(NULL != handle, Fatal::UnableToInitialize, "Failed to load libEGL dynamic library. %s", dlerror());
|
BGFX_FATAL(NULL != handle, Fatal::UnableToInitialize, "Failed to load libEGL dynamic library.");
|
||||||
|
|
||||||
#define EGL_IMPORT_FUNC(_proto, _func) \
|
#define EGL_IMPORT_FUNC(_proto, _func) \
|
||||||
_func = (_proto)bx::dlsym(handle, #_func); \
|
_func = (_proto)bx::dlsym(handle, #_func); \
|
||||||
|
|
Loading…
Reference in a new issue