Searched refs:m_colorAttachments (Results 1 – 7 of 7) sorted by relevance
465 …m_colorAttachments = std::vector<vk::VkAttachmentReference>(_colorAttachments, _colorAttachments +… in SubpassDescription()488 if (!m_colorAttachments.empty()) in SubpassDescription()489 pColorAttachments = &m_colorAttachments[0]; in SubpassDescription()505 m_colorAttachments = std::vector<vk::VkAttachmentReference>( in SubpassDescription()521 if (!m_colorAttachments.empty()) in SubpassDescription()522 pColorAttachments = &m_colorAttachments[0]; in SubpassDescription()542 m_colorAttachments = rhs.m_colorAttachments; in operator =()550 if (!m_colorAttachments.empty()) in operator =()551 pColorAttachments = &m_colorAttachments[0]; in operator =()
175 std::vector<vk::VkAttachmentReference> m_colorAttachments; member in vkt::Draw::SubpassDescription
414 ,m_colorAttachments (colorAttachments) in Subpass()439 return m_colorAttachments; in getColorAttachments()
309 std::vector<AttachmentReference> m_colorAttachments; member in vkt::renderpass::Subpass
554 , m_colorAttachments (colorAttachments) in Subpass()565 …const vector<AttachmentReference>& getColorAttachments (void) const { return m_colorAttachments;… in getColorAttachments()576 vector<AttachmentReference> m_colorAttachments; member in vkt::__anonc29f8a2d0111::Subpass1680 , m_colorAttachments (renderPass.getSubpasses()[subpassIndex].getColorAttachments()) in SubpassRenderInfo()1683 …for (deUint32 attachmentNdx = 0; attachmentNdx < (deUint32)m_colorAttachments.size(); attachmentNd… in SubpassRenderInfo()1684 …m_colorAttachmentInfo.push_back(renderPass.getAttachments()[getAttachmentNdx(m_colorAttachments, a… in SubpassRenderInfo()1709 …deUint32 getColorAttachmentCount (void) const { return (deUint32)m_colorAttachments.size();… in getColorAttachmentCount()1710 … getColorAttachmentLayout (deUint32 attachmentNdx) const { return m_colorAttachments[attachmentNd… in getColorAttachmentLayout()1711 …deUint32 getColorAttachmentIndex (deUint32 attachmentNdx) const { return m_colorAttachments… in getColorAttachmentIndex()1732 vector<AttachmentReference> m_colorAttachments; member in vkt::__anonc29f8a2d0111::SubpassRenderInfo
1501 if (binding + 1 > m_colorAttachments.size()) { in AddColorAttachment()1502 m_colorAttachments.resize(binding + 1); in AddColorAttachment()1504 m_colorAttachments[binding] = att; in AddColorAttachment()1557 m_cb_state.attachmentCount = m_colorAttachments.size(); in InitGraphicsPipelineCreateInfo()1558 m_cb_state.pAttachments = m_colorAttachments.data(); in InitGraphicsPipelineCreateInfo()
477 vector<VkPipelineColorBlendAttachmentState> m_colorAttachments; variable