/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/renderpass/ |
D | vktRenderPassTests.cpp | 832 for (size_t attachmentNdx = 0; attachmentNdx < attachments.size(); attachmentNdx++) in logRenderPassInfo() local 834 …hmentSection (log, "Attachment" + de::toString(attachmentNdx), "Attachment " + de::toString(attach… in logRenderPassInfo() 835 const Attachment& attachment = attachments[attachmentNdx]; in logRenderPassInfo() 1162 …for (size_t attachmentNdx = 0; attachmentNdx < subpass.getColorAttachments().size(); attachmentNdx… in createSubpassDescription() local 1163 ….push_back(createAttachmentReference<AttachmentRef>(subpass.getColorAttachments()[attachmentNdx])); in createSubpassDescription() 1165 …for (size_t attachmentNdx = 0; attachmentNdx < subpass.getInputAttachments().size(); attachmentNdx… in createSubpassDescription() local 1166 ….push_back(createAttachmentReference<AttachmentRef>(subpass.getInputAttachments()[attachmentNdx])); in createSubpassDescription() 1168 …for (size_t attachmentNdx = 0; attachmentNdx < subpass.getResolveAttachments().size(); attachmentN… in createSubpassDescription() local 1169 …ush_back(createAttachmentReference<AttachmentRef>(subpass.getResolveAttachments()[attachmentNdx])); in createSubpassDescription() 1173 …for (size_t attachmentNdx = 0; attachmentNdx < subpass.getPreserveAttachments().size(); attachment… in createSubpassDescription() local [all …]
|
D | vktRenderPassTestsUtil.cpp | 660 …for (size_t attachmentNdx = 0; attachmentNdx < subpass.getColorAttachments().size(); attachmentNdx… in createSubpassDescription() local 661 ….push_back(createAttachmentReference<AttachmentRef>(subpass.getColorAttachments()[attachmentNdx])); in createSubpassDescription() 663 …for (size_t attachmentNdx = 0; attachmentNdx < subpass.getInputAttachments().size(); attachmentNdx… in createSubpassDescription() local 664 ….push_back(createAttachmentReference<AttachmentRef>(subpass.getInputAttachments()[attachmentNdx])); in createSubpassDescription() 666 …for (size_t attachmentNdx = 0; attachmentNdx < subpass.getResolveAttachments().size(); attachmentN… in createSubpassDescription() local 667 …ush_back(createAttachmentReference<AttachmentRef>(subpass.getResolveAttachments()[attachmentNdx])); in createSubpassDescription() 671 …for (size_t attachmentNdx = 0; attachmentNdx < subpass.getPreserveAttachments().size(); attachment… in createSubpassDescription() local 672 preserveAttachmentReferences->push_back(subpass.getPreserveAttachments()[attachmentNdx]); in createSubpassDescription() 780 …for (size_t attachmentNdx = 0; attachmentNdx < renderPassInfo.getAttachments().size(); attachmentN… in createRenderPass() local 781 …_back(createAttachmentDescription<AttachmentDesc>(renderPassInfo.getAttachments()[attachmentNdx])); in createRenderPass()
|
D | vktRenderPassMultisampleResolveTests.cpp | 510 for (deUint32 attachmentNdx = 0; attachmentNdx < m_attachmentsCount; attachmentNdx++) in clearAttachments() local 512 colors[attachmentNdx].aspectMask = VK_IMAGE_ASPECT_COLOR_BIT; in clearAttachments() 513 colors[attachmentNdx].colorAttachment = attachmentNdx; in clearAttachments() 514 colors[attachmentNdx].clearValue = value; in clearAttachments() 993 for (size_t attachmentNdx = 0; attachmentNdx < m_attachmentsCount; attachmentNdx++) in verify() local 995 const Vec4 color (accesses[attachmentNdx].getPixel(x, y, z)); in verify() 1019 for (size_t attachmentNdx = 0; attachmentNdx < m_attachmentsCount; attachmentNdx++) in verify() local 1020 logImage(std::string("Attachment") + de::toString(attachmentNdx), accesses[attachmentNdx]); in verify() 1085 for (size_t attachmentNdx = 0; attachmentNdx < m_attachmentsCount; attachmentNdx++) in verify() local 1087 const UVec4 color (accesses[attachmentNdx].getPixelUint(x, y, z)); in verify() [all …]
|
D | vktRenderPassMultisampleTests.cpp | 2014 …for (deUint32 attachmentNdx = 0; attachmentNdx < de::min((deUint32)MAX_COLOR_ATTACHMENT_COUNT, con… in init() local 2017 …splitShader << "layout(location = " << attachmentNdx << ") out highp vec2 o_color" << attachmentNd… in init() 2019 …splitShader << "layout(location = " << attachmentNdx << ") out highp float o_color" << attachmentN… in init() 2026 …for (deUint32 attachmentNdx = 0; attachmentNdx < de::min((deUint32)MAX_COLOR_ATTACHMENT_COUNT, con… in init() local 2029 …pth" << attachmentNdx << " = subpassLoad(i_depth, int(" << MAX_COLOR_ATTACHMENT_COUNT << " * pushC… in init() 2032 …il" << attachmentNdx << " = subpassLoad(i_stencil, int(" << MAX_COLOR_ATTACHMENT_COUNT << " * push… in init() 2035 …splitShader << "\to_color" << attachmentNdx << " = vec2(depth" << attachmentNdx << ", float(stenci… in init() 2037 splitShader << "\to_color" << attachmentNdx << " = float(depth" << attachmentNdx << ");\n"; in init() 2039 splitShader << "\to_color" << attachmentNdx << " = float(stencil" << attachmentNdx << ");\n"; in init() 2083 …for (deUint32 attachmentNdx = 0; attachmentNdx < de::min((deUint32)MAX_COLOR_ATTACHMENT_COUNT, con… in init() local [all …]
|
D | vktRenderPassUnusedAttachmentSparseFillingTests.cpp | 806 …for (std::size_t attachmentNdx = 0; attachmentNdx < activeInputAttachmentCount.size(); ++attachmen… in createRenderPassUnusedAttachmentSparseFillingTests() local 808 TestParams testParams{ renderingType, activeInputAttachmentCount[attachmentNdx] }; in createRenderPassUnusedAttachmentSparseFillingTests() 809 …string("input_attachment_") + de::toString(activeInputAttachmentCount[attachmentNdx]), "", testPar… in createRenderPassUnusedAttachmentSparseFillingTests()
|
D | vktRenderPassSubpassDependencyTests.cpp | 1331 for (deUint32 attachmentNdx = 0; attachmentNdx < attachmentCount; attachmentNdx++) in createFramebuffer() local 1332 attachmentHandles.push_back(**dstImageViews.at(attachmentNdx)); in createFramebuffer() 1493 for (deUint32 attachmentNdx = 0; attachmentNdx < attachmentCount; ++attachmentNdx) in iterateInternal() local 1495 barrier.image = **m_images[attachmentNdx]; in iterateInternal() 1508 for (size_t attachmentNdx = 0; attachmentNdx < attachmentCount; attachmentNdx++) in iterateInternal() local 4101 for (size_t attachmentNdx = 0; attachmentNdx < attachmentCount; attachmentNdx++) in initTests() local 4106 const VkAttachmentStoreOp storeOp ((attachmentNdx == attachmentCount - 1) in initTests() 4110 const VkAttachmentStoreOp stencilStoreOp ((attachmentNdx == attachmentCount - 1) in initTests()
|
D | vktDynamicRenderingTests.cpp | 528 const int attachmentNdx) in generateColroImage() argument 531 const float atchNdx = static_cast<float>(attachmentNdx); in generateColroImage()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/ |
D | vktPipelineMultisampleBaseResolveAndPerSampleFetch.cpp | 601 …for (deUint32 attachmentNdx = 0u; attachmentNdx < firstSubpassAttachmentsCount + numSamples; ++att… in iterate() local 603 clearValues[attachmentNdx] = makeClearValueColor(tcu::Vec4(0.0f, 0.0f, 0.0f, 1.0f)); in iterate()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/draw/ |
D | vktDrawMultipleInterpolationTests.cpp | 386 deUint32 attachmentNdx = 0; in render() local 391 attachmentNdx++, in render() 410 attachmentNdx++, in render()
|