Lines Matching full:swapchain
297 swapchain) {
308 pNewObjNode->parent_object = HandleToUint64(swapchain);
673 VKAPI_ATTR VkResult VKAPI_CALL GetSwapchainImagesKHR(VkDevice device, VkSwapchainKHR swapchain, uint32_t *pSwapchainImageCount,
678 skip |= ValidateObject(device, swapchain, kVulkanObjectTypeSwapchainKHR, false, VALIDATION_ERROR_3082f001,
684 ->GetSwapchainImagesKHR(device, swapchain, pSwapchainImageCount, pSwapchainImages);
688 CreateSwapchainImageObject(device, pSwapchainImages[i], swapchain);
898 VKAPI_ATTR void VKAPI_CALL DestroySwapchainKHR(VkDevice device, VkSwapchainKHR swapchain, const VkAllocationCallbacks *pAllocator) {
901 // A swapchain's images are implicitly deleted when the swapchain is deleted.
902 // Remove this swapchain's images from our map of such images.
906 if (pNode->parent_object == HandleToUint64(swapchain)) {
914 swapchain, kVulkanObjectTypeSwapchainKHR, pAllocator, VALIDATION_ERROR_26e00a06,
918 get_dispatch_table(ot_device_table_map, device)->DestroySwapchainKHR(device, swapchain, pAllocator);