Home
last modified time | relevance | path

Searched refs:m_descriptorImageInfo (Results 1 – 2 of 2) sorted by relevance

/external/vulkan-validation-layers/tests/
Dvkrenderframework.cpp553 m_descriptorImageInfo.imageView = VK_NULL_HANDLE; in VkImageObj()
554 m_descriptorImageInfo.imageLayout = VK_IMAGE_LAYOUT_GENERAL; in VkImageObj()
595 if (image_layout == m_descriptorImageInfo.imageLayout) { in SetLayout()
601 if (m_descriptorImageInfo.imageLayout == VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL) in SetLayout()
609 if (m_descriptorImageInfo.imageLayout == VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL) in SetLayout()
611 else if (m_descriptorImageInfo.imageLayout == VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL) in SetLayout()
619 if (m_descriptorImageInfo.imageLayout == VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL) in SetLayout()
627 if (m_descriptorImageInfo.imageLayout == VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL) in SetLayout()
645 if (m_descriptorImageInfo.imageLayout == VK_IMAGE_LAYOUT_UNDEFINED) in SetLayout()
649 m_descriptorImageInfo.imageLayout = image_layout; in SetLayout()
[all …]
Dvkrenderframework.h261 void layout(VkImageLayout layout) { m_descriptorImageInfo.imageLayout = layout; } in layout()
297 VkImageLayout layout() const { return m_descriptorImageInfo.imageLayout; } in layout()
306 VkDescriptorImageInfo m_descriptorImageInfo; variable