MCPcopy Create free account
hub / github.com/ad-si/LuaCAD / glad_close_dlopen_handle

Function glad_close_dlopen_handle

OpenCSG/src/glad/src/gl.cpp:1677–1685  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1675}
1676
1677static void glad_close_dlopen_handle(void* handle) {
1678 if (handle != NULL) {
1679#if GLAD_PLATFORM_WIN32
1680 FreeLibrary((HMODULE) handle);
1681#else
1682 dlclose(handle);
1683#endif
1684 }
1685}
1686
1687static GLADapiproc glad_dlsym_handle(void* handle, const char *name) {
1688 if (handle == NULL) {

Callers 1

gladLoaderUnloadGLFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected