Home
last modified time | relevance | path

Searched refs:colorAttachmentReferences (Results 1 – 11 of 11) sorted by relevance

/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/renderpass/
DvktRenderPassTestsUtil.cpp656 std::vector<AttachmentRef>& colorAttachmentReferences = attachmentReferenceLists[1]; in createSubpassDescription() local
661colorAttachmentReferences.push_back(createAttachmentReference<AttachmentRef>(subpass.getColorAttac… in createSubpassDescription()
674 …DE_ASSERT(resolveAttachmentReferences.empty() || colorAttachmentReferences.size() == resolveAttach… in createSubpassDescription()
686 …(deUint32)colorAttachmentReferences.size(), // deUint32 colorAttachmentCount; ||… in createSubpassDescription()
687colorAttachmentReferences.empty() ? DE_NULL : &colorAttachmentReferences[0], // const VkAttach… in createSubpassDescription()
DvktRenderPassSubpassDependencyTests.cpp2013 vector<AttachmentReference> colorAttachmentReferences; in iterateInternal() local
2016colorAttachmentReferences.push_back(AttachmentReference(0u, VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIM… in iterateInternal()
2018 …IPELINE_BIND_POINT_GRAPHICS, 0u, vector<AttachmentReference>(), colorAttachmentReferences, vector<… in iterateInternal()
2541 vector<AttachmentReference> colorAttachmentReferences; in iterateInternal() local
2550 colorAttachmentReferences.push_back(AttachmentReference(0u, colorImageLayout)); in iterateInternal()
2561 …VK_PIPELINE_BIND_POINT_GRAPHICS, 0u, inputAttachmentReferences, colorAttachmentReferences, vector<… in iterateInternal()
3179 vector<AttachmentReference> colorAttachmentReferences; in iterateInternal() local
3185colorAttachmentReferences.push_back(AttachmentReference(0u, VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIM… in iterateInternal()
3188 colorAttachmentReferences, vector<AttachmentReference>(), in iterateInternal()
3195 vector<AttachmentReference> colorAttachmentReferences; in iterateInternal() local
[all …]
DvktRenderPassTests.cpp1158 vector<AttachmentRef>& colorAttachmentReferences = attachmentReferenceLists[1]; in createSubpassDescription() local
1163colorAttachmentReferences.push_back(createAttachmentReference<AttachmentRef>(subpass.getColorAttac… in createSubpassDescription()
1176 …DE_ASSERT(resolveAttachmentReferences.empty() || colorAttachmentReferences.size() == resolveAttach… in createSubpassDescription()
1188 …(deUint32)colorAttachmentReferences.size(), // deUint32 colorAttachmentCount; ||… in createSubpassDescription()
1189colorAttachmentReferences.empty() ? DE_NULL : &colorAttachmentReferences[0], // const VkAttach… in createSubpassDescription()
5352 vector<AttachmentReference> colorAttachmentReferences; in addAttachmentTests() local
5390colorAttachmentReferences.push_back(AttachmentReference((deUint32)attachmentNdx, subpassLayout)); in addAttachmentTests()
5427 …IPELINE_BIND_POINT_GRAPHICS, 0u, vector<AttachmentReference>(), colorAttachmentReferences, vector<… in addAttachmentTests()
5488 vector<AttachmentReference> colorAttachmentReferences; in addAttachmentWriteMaskTests() local
5504colorAttachmentReferences.push_back(AttachmentReference((deUint32)attachmentNdx, subpassLayout)); in addAttachmentWriteMaskTests()
[all …]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineFramebufferAttachmentTests.cpp127 vector<VkAttachmentReference> colorAttachmentReferences (numLayers); in makeRenderPass() local
155 colorAttachmentReferences[i] = attachmentRef; in makeRenderPass()
164 &colorAttachmentReferences[i], // const VkAttachmentReference* pColorAttachments; in makeRenderPass()
952 vector<VkAttachmentReference> colorAttachmentReferences (numAttachments); in makeRenderPassDifferentAttachmentSizes() local
975 colorAttachmentReferences[i] = attachmentRef; in makeRenderPassDifferentAttachmentSizes()
985 &colorAttachmentReferences[0], // const VkAttachmentReference* pColorAttachments; in makeRenderPassDifferentAttachmentSizes()
DvktPipelineImageSamplingInstance.cpp619 std::vector<VkAttachmentReference> colorAttachmentReferences(m_imageCount); in ImageSamplingInstance() local
633colorAttachmentReferences[imgNdx].attachment = (deUint32)imgNdx; // deUint32 attachme… in ImageSamplingInstance()
634colorAttachmentReferences[imgNdx].layout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL; // VkImageL… in ImageSamplingInstance()
644 &colorAttachmentReferences[0], // const VkAttachmentReference* pColorAttachments; in ImageSamplingInstance()
DvktPipelineMultisampleSampleLocationsExtTests.cpp841 m_subpasses.back().colorAttachmentReferences.push_back( in addSubpassColorAttachment()
849 m_subpasses.back().colorAttachmentReferences.push_back( in addSubpassColorAttachmentWithResolve()
906 …static_cast<deUint32>(sd.colorAttachmentReferences.size()), // deUint32 colorAttachmentCoun… in bake()
907 …dataOrNullPtr(sd.colorAttachmentReferences), // const VkAttachmentReference* pColorAttachment… in bake()
1012 std::vector<VkAttachmentReference> colorAttachmentReferences; member
DvktPipelineRenderToImageTests.cpp473 vector<VkAttachmentReference> colorAttachmentReferences (numLayers); in makeRenderPass() local
491 colorAttachmentReferences[i] = attachmentRef; in makeRenderPass()
502 &colorAttachmentReferences[i], // const VkAttachmentReference* pColorAttachments; in makeRenderPass()
DvktPipelineMultisampleImageTests.cpp336 std::vector<VkAttachmentReference> colorAttachmentReferences(numLayers); in makeMultisampleRenderPass() local
346 colorAttachmentReferences[i] = attachmentRef; in makeMultisampleRenderPass()
355 &colorAttachmentReferences[i], // const VkAttachmentReference* pColorAttachments; in makeMultisampleRenderPass()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/fragment_shading_rate/
DvktAttachmentRateTests.cpp352 std::vector<VkAttachmentReference2> colorAttachmentReferences(subpassCount, { in buildRenderPass() local
384 &colorAttachmentReferences[0], // const VkAttachmentReference2* pColorAttachments; in buildRenderPass()
418 colorAttachmentReferences[1].attachment = 2; in buildRenderPass()
423 subpassDescriptions[1].pColorAttachments = &colorAttachmentReferences[1]; in buildRenderPass()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/image/
DvktImageMutableTests.cpp702 vector<VkAttachmentReference> colorAttachmentReferences (numLayers); in makeRenderPass() local
714 colorAttachmentReferences[i] = attachmentRef; in makeRenderPass()
723 &colorAttachmentReferences[i], // const VkAttachmentReference* pColorAttachments; in makeRenderPass()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderexecutor/
DvktShaderExecutor.cpp922 std::vector<VkAttachmentReference> colorAttachmentReferences; in execute() local
1032 colorAttachmentReferences.push_back(colorAttachmentReference); in execute()
1119 &colorAttachmentReferences[0], // const VkAttachmentReference* colorAttachments; in execute()