Lines Matching refs:imgpair

3582     ImageSubresourcePair imgpair = {image, true, range};  in FindLayout()  local
3583 auto imgsubIt = pCB->imageLayoutMap.find(imgpair); in FindLayout()
3585 imgpair = {image, false, VkImageSubresource()}; in FindLayout()
3586 imgsubIt = pCB->imageLayoutMap.find(imgpair); in FindLayout()
3595 bool FindLayout(const layer_data *my_data, ImageSubresourcePair imgpair, VkImageLayout &layout) { in FindLayout() argument
3596 auto imgsubIt = my_data->imageLayoutMap.find(imgpair); in FindLayout()
3598 imgpair = {imgpair.image, false, VkImageSubresource()}; in FindLayout()
3599 imgsubIt = my_data->imageLayoutMap.find(imgpair); in FindLayout()
3608 ImageSubresourcePair imgpair = {image, true, range}; in FindLayout() local
3609 return FindLayout(my_data, imgpair, layout); in FindLayout()
3637 void SetLayout(layer_data *my_data, ImageSubresourcePair imgpair, const VkImageLayout &layout) { in SetLayout() argument
3638 VkImage &image = imgpair.image; in SetLayout()
3640 my_data->imageLayoutMap[imgpair].layout = layout; in SetLayout()
3642 …d(my_data->imageSubresourceMap[image].begin(), my_data->imageSubresourceMap[image].end(), imgpair); in SetLayout()
3644 my_data->imageSubresourceMap[image].push_back(imgpair); in SetLayout()
3649 ImageSubresourcePair imgpair = {image, false, VkImageSubresource()}; in SetLayout() local
3650 SetLayout(my_data, imgpair, layout); in SetLayout()
3654 ImageSubresourcePair imgpair = {image, true, range}; in SetLayout() local
3655 SetLayout(my_data, imgpair, layout); in SetLayout()
3659 void SetLayout(GLOBAL_CB_NODE *pCB, VkImage image, ImageSubresourcePair imgpair, const IMAGE_CMD_BU… in SetLayout() argument
3660 pCB->imageLayoutMap[imgpair] = node; in SetLayout()
3662 …std::find(pCB->imageSubresourceMap[image].begin(), pCB->imageSubresourceMap[image].end(), imgpair); in SetLayout()
3664 pCB->imageSubresourceMap[image].push_back(imgpair); in SetLayout()
3668 void SetLayout(GLOBAL_CB_NODE *pCB, VkImage image, ImageSubresourcePair imgpair, const VkImageLayou… in SetLayout() argument
3670 …d::find(pCB->imageSubresourceMap[image].begin(), pCB->imageSubresourceMap[image].end(), imgpair) != in SetLayout()
3672 pCB->imageLayoutMap[imgpair].layout = layout; in SetLayout()
3675 assert(imgpair.hasSubresource); in SetLayout()
3677 FindLayout(pCB, image, imgpair.subresource, node); in SetLayout()
3678 SetLayout(pCB, image, imgpair, {node.initialLayout, layout}); in SetLayout()
3683 ImageSubresourcePair imgpair = {image, false, VkImageSubresource()}; in SetLayout() local
3684 SetLayout(pCB, image, imgpair, node); in SetLayout()
3688 ImageSubresourcePair imgpair = {image, true, range}; in SetLayout() local
3689 SetLayout(pCB, image, imgpair, node); in SetLayout()
3693 ImageSubresourcePair imgpair = {image, false, VkImageSubresource()}; in SetLayout() local
3694 SetLayout(pCB, image, imgpair, layout); in SetLayout()
3698 ImageSubresourcePair imgpair = {image, true, range}; in SetLayout() local
3699 SetLayout(pCB, image, imgpair, layout); in SetLayout()