Lines Matching refs:attachmentDescriptions

633 		std::vector<VkAttachmentDescription>	attachmentDescriptions(m_imageCount);
641 attachmentDescriptions[imgNdx].flags = 0u; // VkAttachmentDescriptionFlags flags;
642 attachmentDescriptions[imgNdx].format = m_useImageAsColorOrDSAttachment ? m_imageFormat : m_colorFormat; // VkFormat format;
643 attachmentDescriptions[imgNdx].samples = VK_SAMPLE_COUNT_1_BIT; // VkSampleCountFlagBits samples;
644 attachmentDescriptions[imgNdx].loadOp = loadOp; // VkAttachmentLoadOp loadOp;
645 attachmentDescriptions[imgNdx].storeOp = VK_ATTACHMENT_STORE_OP_STORE; // VkAttachmentStoreOp storeOp;
646 attachmentDescriptions[imgNdx].stencilLoadOp = loadOp; // VkAttachmentLoadOp stencilLoadOp;
647 attachmentDescriptions[imgNdx].stencilStoreOp = VK_ATTACHMENT_STORE_OP_STORE; // VkAttachmentStoreOp stencilStoreOp;
648 attachmentDescriptions[imgNdx].initialLayout = imageLayout; // VkImageLayout initialLayout;
649 attachmentDescriptions[imgNdx].finalLayout = imageLayout; // VkImageLayout finalLayout;
692 (deUint32)attachmentDescriptions.size(), // deUint32 attachmentCount;
693 &attachmentDescriptions[0], // const VkAttachmentDescription* pAttachments;
1159 std::vector<VkAttachmentDescription> attachmentDescriptions(m_imageCount);
1164 attachmentDescriptions[imgNdx].flags = 0u; // VkAttachmentDescriptionFlags flags;
1165 attachmentDescriptions[imgNdx].format = m_useImageAsColorOrDSAttachment ? m_imageFormat : m_colorFormat; // VkFormat format;
1166 attachmentDescriptions[imgNdx].samples = VK_SAMPLE_COUNT_1_BIT; // VkSampleCountFlagBits samples;
1167 attachmentDescriptions[imgNdx].loadOp = VK_ATTACHMENT_LOAD_OP_LOAD; // VkAttachmentLoadOp loadOp;
1168 attachmentDescriptions[imgNdx].storeOp = VK_ATTACHMENT_STORE_OP_STORE; // VkAttachmentStoreOp storeOp;
1169 attachmentDescriptions[imgNdx].stencilLoadOp = VK_ATTACHMENT_LOAD_OP_LOAD; // VkAttachmentLoadOp stencilLoadOp;
1170 attachmentDescriptions[imgNdx].stencilStoreOp = VK_ATTACHMENT_STORE_OP_STORE; // VkAttachmentStoreOp stencilStoreOp;
1171 attachmentDescriptions[imgNdx].initialLayout = m_imageLayout; // VkImageLayout initialLayout;
1172 attachmentDescriptions[imgNdx].finalLayout = m_imageLayout; // VkImageLayout finalLayout;
1220 (deUint32)attachmentDescriptions.size(), // deUint32 attachmentCount;
1221 &attachmentDescriptions[0], // const VkAttachmentDescription* pAttachments;