Home
last modified time | relevance | path

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

/external/vulkan-validation-layers/tests/
Dvkrenderframework.cpp836 m_descriptorImageInfo.imageView = VK_NULL_HANDLE; in VkImageObj()
837 m_descriptorImageInfo.imageLayout = VK_IMAGE_LAYOUT_GENERAL; in VkImageObj()
883 if (image_layout == m_descriptorImageInfo.imageLayout) { in SetLayout()
889 if (m_descriptorImageInfo.imageLayout == VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL) in SetLayout()
897 if (m_descriptorImageInfo.imageLayout == VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL) in SetLayout()
899 else if (m_descriptorImageInfo.imageLayout == VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL) in SetLayout()
907 if (m_descriptorImageInfo.imageLayout == VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL) in SetLayout()
915 if (m_descriptorImageInfo.imageLayout == VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL) in SetLayout()
933 if (m_descriptorImageInfo.imageLayout == VK_IMAGE_LAYOUT_UNDEFINED) src_mask = 0; in SetLayout()
936 m_descriptorImageInfo.imageLayout = image_layout; in SetLayout()
[all …]
Dvkrenderframework.h273 void Layout(VkImageLayout const layout) { m_descriptorImageInfo.imageLayout = layout; } in Layout()
313 VkImageLayout Layout() const { return m_descriptorImageInfo.imageLayout; } in Layout()
322 VkDescriptorImageInfo m_descriptorImageInfo; variable
329 const VkDescriptorImageInfo &DescriptorImageInfo() const { return m_descriptorImageInfo; } in DescriptorImageInfo()