| 2408 | } |
| 2409 | |
| 2410 | uint32_t Swapchain::GetImageCount() const { |
| 2411 | uint32_t image_count = 0; |
| 2412 | vk::GetSwapchainImagesKHR(device(), handle(), &image_count, nullptr); |
| 2413 | return image_count; |
| 2414 | } |
| 2415 | |
| 2416 | std::vector<VkImage> Swapchain::GetImages() const { |
| 2417 | uint32_t image_count = GetImageCount(); |
no test coverage detected