Home | History | Annotate | Download | only in core_validation

Lines Matching refs:imageSubresourceMap

146     unordered_map<VkImage, vector<ImageSubresourcePair>> imageSubresourceMap;
3308 auto sub_data = my_data->imageSubresourceMap.find(image);
3309 if (sub_data == my_data->imageSubresourceMap.end())
3337 imageSubresourceMap[image].begin(), my_data->imageSubresourceMap[image].end(), imgpair);
3338 if (subresource == my_data->imageSubresourceMap[image].end()) {
3339 my_data->imageSubresourceMap[image].push_back(imgpair);
3348 std::find(pCB->imageSubresourceMap[imgpair.image].begin(), pCB->imageSubresourceMap[imgpair.image].end(), imgpair);
3349 if (subresource == pCB->imageSubresourceMap[imgpair.image].end()) {
3350 pCB->imageSubresourceMap[imgpair.image].push_back(imgpair);
3356 if (std::find(pCB->imageSubresourceMap[imgpair.image].begin(), pCB->imageSubresourceMap[imgpair.image].end(), imgpair) !=
3357 pCB->imageSubresourceMap[imgpair.image].end()) {
3663 pCB->imageSubresourceMap.clear();
3968 dev_data->imageSubresourceMap.clear();
5076 const auto& subEntry = dev_data->imageSubresourceMap.find(image);
5077 if (subEntry != dev_data->imageSubresourceMap.end()) {
5081 dev_data->imageSubresourceMap.erase(subEntry);
5467 dev_data->imageSubresourceMap[*pImage].push_back(subpair);
9727 auto image_sub = dev_data->imageSubresourceMap.find(swapchain_image);
9728 if (image_sub != dev_data->imageSubresourceMap.end()) {
9735 dev_data->imageSubresourceMap.erase(image_sub);
9791 dev_data->imageSubresourceMap[pSwapchainImages[i]].push_back(subpair);