///////////////////////////////////////////////////////
| 165 | |
| 166 | //////////////////////////////////////////////////////////// |
| 167 | VulkanFunctionPointer VulkanImpl::getFunction(const char* name) |
| 168 | { |
| 169 | if (!isAvailable(false)) |
| 170 | return nullptr; |
| 171 | |
| 172 | return reinterpret_cast<VulkanFunctionPointer>(dlsym(wrapper.library, name)); |
| 173 | } |
| 174 | |
| 175 | |
| 176 | //////////////////////////////////////////////////////////// |
nothing calls this directly
no test coverage detected