| 181 | return nullptr; |
| 182 | } |
| 183 | static VKAPI_ATTR PFN_vkVoidFunction VKAPI_CALL GetDeviceProcAddr(VkDevice device, const char* pName) { |
| 184 | return GetInstanceProcAddr(nullptr, pName); |
| 185 | } |
| 186 | static VKAPI_ATTR VkResult VKAPI_CALL CreateDevice(VkPhysicalDevice physicalDevice, const VkDeviceCreateInfo* pCreateInfo, |
| 187 | const VkAllocationCallbacks* pAllocator, VkDevice* pDevice) { |
| 188 | *pDevice = (VkDevice)CreateDispObjHandle(); |
nothing calls this directly
no test coverage detected