Searched refs:imageLayoutMap (Results 1 – 5 of 5) sorted by relevance
/external/vulkan-validation-layers/layers/ |
D | buffer_validation.h | 44 bool FindLayout(const std::unordered_map<ImageSubresourcePair, IMAGE_LAYOUT_NODE> &imageLayoutMap, … 47 void SetLayout(std::unordered_map<ImageSubresourcePair, IMAGE_LAYOUT_NODE> &imageLayoutMap, ImageSu…
|
D | buffer_validation.cpp | 54 auto it = pCB->imageLayoutMap.find(imgpair); in SetLayout() 55 if (it != pCB->imageLayoutMap.end()) { in SetLayout() 92 … CoreChecks::SetLayout(std::unordered_map<ImageSubresourcePair, IMAGE_LAYOUT_NODE> &imageLayoutMap, in SetLayout() argument 94 auto it = imageLayoutMap.find(imgpair); in SetLayout() 95 if (it != imageLayoutMap.end()) { in SetLayout() 98 imageLayoutMap[imgpair].layout = layout; // Insert in SetLayout() 109 auto imgsubIt = pCB->imageLayoutMap.find(imgpair); in FindLayoutVerifyNode() 110 if (imgsubIt == pCB->imageLayoutMap.end()) { in FindLayoutVerifyNode() 170 auto imgsubIt = pCB->imageLayoutMap.find(imgpair); in FindCmdBufLayout() 171 if (imgsubIt == pCB->imageLayoutMap.end()) return false; in FindCmdBufLayout() [all …]
|
D | core_validation.h | 192 unordered_map<ImageSubresourcePair, IMAGE_LAYOUT_NODE> imageLayoutMap; 505 …void SetLayout(std::unordered_map<ImageSubresourcePair, IMAGE_LAYOUT_NODE>& imageLayoutMap, ImageS… 773 …ta* device_data, const std::unordered_map<ImageSubresourcePair, IMAGE_LAYOUT_NODE>& imageLayoutMap, 776 …t(const std::unordered_map<ImageSubresourcePair, IMAGE_LAYOUT_NODE>& imageLayoutMap, ImageSubresou…
|
D | core_validation.cpp | 2122 pCB->imageLayoutMap.clear(); in ResetCommandBufferState() 2557 device_data->imageLayoutMap.clear(); in PreCallRecordDestroyDevice() 3168 …kip |= ValidateCmdBufImageLayouts(device_data, cb_node, device_data->imageLayoutMap, localImageLay… in PreCallValidateQueueSubmit() 5026 …ageSubresourcePair, IMAGE_LAYOUT_NODE> *CoreChecks::GetImageLayoutMap() { return &imageLayoutMap; } in GetImageLayoutMap() 10623 for (const auto &ilm_entry : sub_cb_state->imageLayoutMap) { in PreCallValidateCmdExecuteCommands() 10624 auto cb_entry = cb_state->imageLayoutMap.find(ilm_entry.first); in PreCallValidateCmdExecuteCommands() 10625 if (cb_entry != cb_state->imageLayoutMap.end()) { in PreCallValidateCmdExecuteCommands() 10691 for (const auto &ilm_entry : sub_cb_state->imageLayoutMap) { in PreCallRecordCmdExecuteCommands() 10692 auto cb_entry = cb_state->imageLayoutMap.find(ilm_entry.first); in PreCallRecordCmdExecuteCommands() 10693 if (cb_entry != cb_state->imageLayoutMap.end()) { in PreCallRecordCmdExecuteCommands() [all …]
|
D | core_validation_types.h | 1021 std::unordered_map<ImageSubresourcePair, IMAGE_CMD_BUF_LAYOUT_NODE> imageLayoutMap;
|