unordered map: associates an image with a device, image extent, and format
| 93 | |
| 94 | // unordered map: associates an image with a device, image extent, and format |
| 95 | struct ImageMapStruct { |
| 96 | VkDevice device; |
| 97 | VkExtent2D imageExtent; |
| 98 | VkFormat format; |
| 99 | VkSwapchainKHR swapchain = VK_NULL_HANDLE; |
| 100 | }; |
| 101 | static unordered_map<VkImage, ImageMapStruct> imageMap; |
| 102 | |
| 103 | // unordered map: associates a device with per device info - |
nothing calls this directly
no outgoing calls
no test coverage detected