| 9 | namespace OpenKneeboard::Vulkan { |
| 10 | |
| 11 | Dispatch::Dispatch( |
| 12 | VkInstance instance, |
| 13 | PFN_vkGetInstanceProcAddr getInstanceProcAddr) { |
| 14 | #define IT(vkfun) \ |
| 15 | this->vkfun = reinterpret_cast<PFN_vk##vkfun>( \ |
| 16 | getInstanceProcAddr(instance, "vk" #vkfun)); |
| 17 | OPENKNEEBOARD_VK_FUNCS |
| 18 | #undef IT |
| 19 | } |
| 20 | |
| 21 | std::optional<uint32_t> FindMemoryType( |
| 22 | Dispatch* vk, |
nothing calls this directly
no outgoing calls
no test coverage detected