Home | History | Annotate | Download | only in renderpass

Lines Matching refs:VkImageLayout

263 						   VkImageLayout			pCreateInfo_initialLayout)
467 VkAccessFlags getMemoryFlagsForLayout (const VkImageLayout layout)
506 VkImageLayout layout)
513 VkImageLayout getImageLayout (void) const { return m_layout; }
517 VkImageLayout m_layout;
620 VkImageLayout initialLayout,
621 VkImageLayout finalLayout)
646 VkImageLayout getInitialLayout (void) const { return m_initialLayout; }
647 VkImageLayout getFinalLayout (void) const { return m_finalLayout; }
659 VkImageLayout m_initialLayout;
660 VkImageLayout m_finalLayout;
1225 VkImageLayout layout)
1635 VkImageLayout getInputAttachmentLayout (deUint32 attachmentNdx) const { return m_inputAttachments[attachmentNdx].getImageLayout(); }
1638 VkImageLayout getColorAttachmentLayout (deUint32 attachmentNdx) const { return m_colorAttachments[attachmentNdx].getImageLayout(); }
1641 Maybe<VkImageLayout> getDepthStencilAttachmentLayout (void) const { return m_depthStencilAttachment ? tcu::just(m_depthStencilAttachment->getImageLayout()) : tcu::nothing<VkImageLayout>(); }
1947 const VkImageLayout layout = renderInfo.getInputAttachmentLayout(inputAttachmentNdx);
2055 const VkImageLayout inputAttachmentLayout = renderInfo.getInputAttachmentLayout(inputAttachmentNdx);
2215 const VkImageLayout layout = *m_renderInfo.getDepthStencilAttachmentLayout();
2461 const VkImageLayout oldLayout = clearValues[attachmentNdx] ? VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL : VK_IMAGE_LAYOUT_UNDEFINED;
2573 const VkImageLayout oldLayout = attachmentInfo[attachmentNdx].getFinalLayout();
3037 const VkImageLayout layout = subpass.getDepthStencilAttachment().getImageLayout();
3097 const VkImageLayout layout = subpass.getDepthStencilAttachment().getImageLayout();
3164 const VkImageLayout layout = subpass.getInputAttachments()[inputAttachmentNdx].getImageLayout();
3735 const VkImageLayout layout = subpass.getInputAttachments()[attachmentNdx].getImageLayout();
3819 const VkImageLayout layout = subpass.getInputAttachments()[attachmentNdx].getImageLayout();
3870 const VkImageLayout layout = subpass.getInputAttachments()[attachmentNdx].getImageLayout();
4012 VkImageUsageFlags getImageUsageFromLayout (VkImageLayout layout)
4648 const VkImageLayout initialAndFinalColorLayouts[] =
4657 const VkImageLayout initialAndFinalDepthStencilLayouts[] =
4667 const VkImageLayout subpassLayouts[] =
4673 const VkImageLayout depthStencilLayouts[] =
4731 VkImageLayout depthStencilLayout = VK_IMAGE_LAYOUT_GENERAL;
4742 const VkImageLayout initialLayout = rng.choose<VkImageLayout>(DE_ARRAY_BEGIN(initialAndFinalColorLayouts), DE_ARRAY_END(initialAndFinalColorLayouts));
4743 const VkImageLayout finalizeLayout = rng.choose<VkImageLayout>(DE_ARRAY_BEGIN(initialAndFinalColorLayouts), DE_ARRAY_END(initialAndFinalColorLayouts));
4744 const VkImageLayout subpassLayout = rng.choose<VkImageLayout>(DE_ARRAY_BEGIN(subpassLayouts), DE_ARRAY_END(subpassLayouts));
4760 const VkImageLayout initialLayout = rng.choose<VkImageLayout>(DE_ARRAY_BEGIN(initialAndFinalDepthStencilLayouts), DE_ARRAY_END(initialAndFinalDepthStencilLayouts));
4761 const VkImageLayout finalizeLayout = rng.choose<VkImageLayout>(DE_ARRAY_BEGIN(initialAndFinalDepthStencilLayouts), DE_ARRAY_END(initialAndFinalDepthStencilLayouts));
4766 depthStencilLayout = rng.choose<VkImageLayout>(DE_ARRAY_BEGIN(depthStencilLayouts), DE_ARRAY_END(depthStencilLayouts));
4819 const VkImageLayout initialAndFinalColorLayouts[] =
4828 const VkImageLayout initialAndFinalDepthStencilLayouts[] =
4838 const VkImageLayout subpassLayouts[] =
4950 const VkImageLayout initialLayout = isDepthStencilAttachment
4951 ? rng.choose<VkImageLayout>(DE_ARRAY_BEGIN(initialAndFinalDepthStencilLayouts), DE_ARRAY_END(initialAndFinalDepthStencilLayouts))
4952 : rng.choose<VkImageLayout>(DE_ARRAY_BEGIN(initialAndFinalColorLayouts), DE_ARRAY_END(initialAndFinalColorLayouts));
4953 const VkImageLayout finalizeLayout = isDepthStencilAttachment
4954 ? rng.choose<VkImageLayout>(DE_ARRAY_BEGIN(initialAndFinalDepthStencilLayouts), DE_ARRAY_END(initialAndFinalDepthStencilLayouts))
4955 : rng.choose<VkImageLayout>(DE_ARRAY_BEGIN(initialAndFinalColorLayouts), DE_ARRAY_END(initialAndFinalColorLayouts));
5019 const VkImageLayout subpassLayout = VK_IMAGE_LAYOUT_GENERAL;
5051 const VkImageLayout subpassLayout = VK_IMAGE_LAYOUT_GENERAL;
5194 const VkImageLayout initialLayout = rng.choose<VkImageLayout
5195 const VkImageLayout finalizeLayout = rng.choose<VkImageLayout>(DE_ARRAY_BEGIN(initialAndFinalColorLayouts), DE_ARRAY_END(initialAndFinalColorLayouts));
5211 const VkImageLayout subpassLayout = rng.choose<VkImageLayout>(DE_ARRAY_BEGIN(subpassLayouts), DE_ARRAY_END(subpassLayouts));
5232 const VkImageLayout subpassLayout = rng.choose<VkImageLayout>(DE_ARRAY_BEGIN(subpassLayouts), DE_ARRAY_END(subpassLayouts));
5253 const VkImageLayout subpassLayout = rng.choose<VkImageLayout>(DE_ARRAY_BEGIN(subpassLayouts), DE_ARRAY_END(subpassLayouts));
5274 const VkImageLayout subpassLayout = rng.choose<VkImageLayout>(DE_ARRAY_BEGIN(subpassLayouts), DE_ARRAY_END(subpassLayouts));
5293 const VkImageLayout subpassLayout = rng.choose<VkImageLayout>(DE_ARRAY_BEGIN(subpassLayouts), DE_ARRAY_END(subpassLayouts));
5310 vector<AttachmentReference>(1, AttachmentReference(0, rng.choose<VkImageLayout>(DE_ARRAY_BEGIN(subpassLayouts), DE_ARRAY_END(subpassLayouts)))),
5319 vector<AttachmentReference>(1, AttachmentReference((deUint32)(subpassNdx), rng.choose<VkImageLayout>(DE_ARRAY_BEGIN(subpassLayouts), DE_ARRAY_END(subpassLayouts)))),