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