Searched defs:imageLayoutMap (Results 1 - 3 of 3) sorted by relevance

/external/vulkan-validation-layers/layers/
H A Dbuffer_validation.cpp37 if (pCB->imageLayoutMap.find(imgpair) != pCB->imageLayoutMap.end()) {
38 pCB->imageLayoutMap[imgpair].layout = layout;
67 void SetLayout(std::unordered_map<ImageSubresourcePair, IMAGE_LAYOUT_NODE> &imageLayoutMap, ImageSubresourcePair imgpair, argument
69 imageLayoutMap[imgpair].layout = layout;
81 auto imgsubIt = pCB->imageLayoutMap.find(imgpair);
82 if (imgsubIt == pCB->imageLayoutMap.end()) {
138 auto imgsubIt = pCB->imageLayoutMap.find(imgpair);
139 if (imgsubIt == pCB->imageLayoutMap.end()) return false;
181 bool FindLayout(const std::unordered_map<ImageSubresourcePair, IMAGE_LAYOUT_NODE> &imageLayoutMap, ImageSubresourcePai argument
196 FindLayout(const std::unordered_map<ImageSubresourcePair, IMAGE_LAYOUT_NODE> &imageLayoutMap, ImageSubresourcePair imgpair, VkImageLayout &layout) argument
[all...]
H A Dcore_validation_types.h705 std::unordered_map<ImageSubresourcePair, IMAGE_CMD_BUF_LAYOUT_NODE> imageLayoutMap; member in struct:GLOBAL_CB_NODE
H A Dcore_validation.cpp154 unordered_map<ImageSubresourcePair, IMAGE_LAYOUT_NODE> imageLayoutMap; member in struct:core_validation::layer_data
1884 pCB->imageLayoutMap.clear();
2293 dev_data->imageLayoutMap.clear();
2891 skip |= ValidateCmdBufImageLayouts(dev_data, cb_node, dev_data->imageLayoutMap, localImageLayoutMap);
4623 return &device_data->imageLayoutMap;
4627 return &device_data->imageLayoutMap;
9235 for (auto ilm_entry : pSubCB->imageLayoutMap) {
9236 if (pCB->imageLayoutMap.find(ilm_entry.first) != pCB->imageLayoutMap.end()) {
9237 pCB->imageLayoutMap[ilm_entr
[all...]

Completed in 140 milliseconds