Home
last modified time | relevance | path

Searched refs:imageSubresourceMap (Results 1 – 3 of 3) sorted by relevance

/external/vulkan-validation-layers/layers/
Dbuffer_validation.cpp1534 …std::unordered_map<VkImage, std::vector<ImageSubresourcePair>> *imageSubresourceMap = GetImageSubr… in PreCallRecordDestroyImage() local
1536 const auto &sub_entry = imageSubresourceMap->find(image); in PreCallRecordDestroyImage()
1537 if (sub_entry != imageSubresourceMap->end()) { in PreCallRecordDestroyImage()
1541 imageSubresourceMap->erase(sub_entry); in PreCallRecordDestroyImage()
Dcore_validation.cpp2556 device_data->imageSubresourceMap.clear(); in PreCallRecordDestroyDevice()
5023 return &imageSubresourceMap; in GetImageSubresourceMap()
11871 auto image_sub = device_data->imageSubresourceMap.find(swapchain_image); in PreCallRecordDestroySwapchainKHR()
11872 if (image_sub != device_data->imageSubresourceMap.end()) { in PreCallRecordDestroySwapchainKHR()
11879 device_data->imageSubresourceMap.erase(image_sub); in PreCallRecordDestroySwapchainKHR()
11959 device_data->imageSubresourceMap[pSwapchainImages[i]].push_back(subpair); in PostCallRecordGetSwapchainImagesKHR()
Dcore_validation.h191 unordered_map<VkImage, std::vector<ImageSubresourcePair>> imageSubresourceMap;