MCPcopy Create free account
hub / github.com/KhronosGroup/Vulkan-ValidationLayers / GetImageCount

Method GetImageCount

tests/framework/binding.cpp:2410–2414  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 3

TEST_FFunction · 0.80
TEST_FFunction · 0.80
TEST_FFunction · 0.80

Calls 1

GetSwapchainImagesKHRFunction · 0.85

Tested by

no test coverage detected