| 1675 | } |
| 1676 | |
| 1677 | static 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 | |
| 1687 | static GLADapiproc glad_dlsym_handle(void* handle, const char *name) { |
| 1688 | if (handle == NULL) { |
no outgoing calls
no test coverage detected