/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/renderpass/ |
H A D | vktRenderPassTestsUtil.cpp | 656 std::vector<AttachmentRef>& colorAttachmentReferences = attachmentReferenceLists[1]; in createSubpassDescription() local 661 colorAttachmentReferences.push_back(createAttachmentReference<AttachmentRef>(subpass.getColorAttachments()[attachmentNdx])); in createSubpassDescription() 674 DE_ASSERT(resolveAttachmentReferences.empty() || colorAttachmentReferences.size() == resolveAttachmentReferences.size()); in createSubpassDescription() 686 (deUint32)colorAttachmentReferences.size(), // deUint32 colorAttachmentCount; || deUint32 colorAttachmentCount; in createSubpassDescription() 687 colorAttachmentReferences.empty() ? DE_NULL : &colorAttachmentReferences[0], // const VkAttachmentReference* pColorAttachments; || const VkAttachmentReference2* pColorAttachments; in createSubpassDescription()
|
H A D | vktRenderPassTests.cpp | 1181 vector<AttachmentRef>& colorAttachmentReferences = attachmentReferenceLists[1]; in createSubpassDescription() local 1186 colorAttachmentReferences.push_back(createAttachmentReference<AttachmentRef>(subpass.getColorAttachments()[attachmentNdx])); in createSubpassDescription() 1199 DE_ASSERT(resolveAttachmentReferences.empty() || colorAttachmentReferences.size() == resolveAttachmentReferences.size()); in createSubpassDescription() 1211 (deUint32)colorAttachmentReferences.size(), // deUint32 colorAttachmentCount; || deUint32 colorAttachmentCount; in createSubpassDescription() 1212 colorAttachmentReferences.empty() ? DE_NULL : &colorAttachmentReferences[0], // const VkAttachmentReference* pColorAttachments; || const VkAttachmentReference2KHR* pColorAttachments; in createSubpassDescription() 5702 vector<AttachmentReference> colorAttachmentReferences; 5740 colorAttachmentReferences.push_back(AttachmentReference((deUint32)attachmentNdx, subpassLayout)); 5777 const vector<Subpass> subpasses (1, Subpass(VK_PIPELINE_BIND_POINT_GRAPHICS, 0u, vector<AttachmentReference>(), colorAttachmentReferences, vector<AttachmentReference>(), AttachmentReference((useDepthStencil ? (deUint32)(attachments.size() - 1) : VK_ATTACHMENT_UNUSED), depthStencilLayout), vector<deUint32>())); 5847 vector<AttachmentReference> colorAttachmentReferences; [all...] |
H A D | vktRenderPassSubpassDependencyTests.cpp | 2013 vector<AttachmentReference> colorAttachmentReferences; in iterateInternal() local 2016 colorAttachmentReferences.push_back(AttachmentReference(0u, VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL)); in iterateInternal() 2018 const vector<Subpass> subpasses (1, Subpass(VK_PIPELINE_BIND_POINT_GRAPHICS, 0u, vector<AttachmentReference>(), colorAttachmentReferences, vector<AttachmentReference>(), AttachmentReference(VK_ATTACHMENT_UNUSED, VK_IMAGE_LAYOUT_GENERAL), vector<deUint32>())); in iterateInternal() 2541 vector<AttachmentReference> colorAttachmentReferences; in iterateInternal() local 2550 colorAttachmentReferences.push_back(AttachmentReference(0u, colorImageLayout)); in iterateInternal() 2561 const vector<Subpass> subpasses (1, Subpass(VK_PIPELINE_BIND_POINT_GRAPHICS, 0u, inputAttachmentReferences, colorAttachmentReferences, vector<AttachmentReference>(), isDSFormat ? dsAttachmentReference : AttachmentReference(VK_ATTACHMENT_UNUSED, VK_IMAGE_LAYOUT_GENERAL), vector<deUint32>())); in iterateInternal() 3179 vector<AttachmentReference> colorAttachmentReferences; in iterateInternal() local 3185 colorAttachmentReferences.push_back(AttachmentReference(0u, VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL)); in iterateInternal() 3188 colorAttachmentReferences, vector<AttachmentReference>(), in iterateInternal() 3195 vector<AttachmentReference> colorAttachmentReferences; in iterateInternal() local 3931 vector<AttachmentReference> colorAttachmentReferences; initTests() local 4012 vector<AttachmentReference> colorAttachmentReferences; initTests() local [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/renderpass/ |
H A D | vktRenderPassTestsUtil.cpp | 656 std::vector<AttachmentRef>& colorAttachmentReferences = attachmentReferenceLists[1]; in createSubpassDescription() local 661 colorAttachmentReferences.push_back(createAttachmentReference<AttachmentRef>(subpass.getColorAttachments()[attachmentNdx])); in createSubpassDescription() 674 DE_ASSERT(resolveAttachmentReferences.empty() || colorAttachmentReferences.size() == resolveAttachmentReferences.size()); in createSubpassDescription() 686 (deUint32)colorAttachmentReferences.size(), // deUint32 colorAttachmentCount; || deUint32 colorAttachmentCount; in createSubpassDescription() 687 colorAttachmentReferences.empty() ? DE_NULL : &colorAttachmentReferences[0], // const VkAttachmentReference* pColorAttachments; || const VkAttachmentReference2* pColorAttachments; in createSubpassDescription()
|
H A D | vktRenderPassTests.cpp | 1169 vector<AttachmentRef>& colorAttachmentReferences = attachmentReferenceLists[1]; in createSubpassDescription() local 1174 colorAttachmentReferences.push_back(createAttachmentReference<AttachmentRef>(subpass.getColorAttachments()[attachmentNdx])); in createSubpassDescription() 1187 DE_ASSERT(resolveAttachmentReferences.empty() || colorAttachmentReferences.size() == resolveAttachmentReferences.size()); in createSubpassDescription() 1199 (deUint32)colorAttachmentReferences.size(), // deUint32 colorAttachmentCount; || deUint32 colorAttachmentCount; in createSubpassDescription() 1200 colorAttachmentReferences.empty() ? DE_NULL : &colorAttachmentReferences[0], // const VkAttachmentReference* pColorAttachments; || const VkAttachmentReference2KHR* pColorAttachments; in createSubpassDescription() 5677 vector<AttachmentReference> colorAttachmentReferences; 5715 colorAttachmentReferences.push_back(AttachmentReference((deUint32)attachmentNdx, subpassLayout)); 5752 const vector<Subpass> subpasses (1, Subpass(VK_PIPELINE_BIND_POINT_GRAPHICS, 0u, vector<AttachmentReference>(), colorAttachmentReferences, vector<AttachmentReference>(), AttachmentReference((useDepthStencil ? (deUint32)(attachments.size() - 1) : VK_ATTACHMENT_UNUSED), depthStencilLayout), vector<deUint32>())); 5822 vector<AttachmentReference> colorAttachmentReferences; [all...] |
H A D | vktRenderPassSubpassDependencyTests.cpp | 2013 vector<AttachmentReference> colorAttachmentReferences; in iterateInternal() local 2016 colorAttachmentReferences.push_back(AttachmentReference(0u, VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL)); in iterateInternal() 2018 const vector<Subpass> subpasses (1, Subpass(VK_PIPELINE_BIND_POINT_GRAPHICS, 0u, vector<AttachmentReference>(), colorAttachmentReferences, vector<AttachmentReference>(), AttachmentReference(VK_ATTACHMENT_UNUSED, VK_IMAGE_LAYOUT_GENERAL), vector<deUint32>())); in iterateInternal() 2541 vector<AttachmentReference> colorAttachmentReferences; in iterateInternal() local 2550 colorAttachmentReferences.push_back(AttachmentReference(0u, colorImageLayout)); in iterateInternal() 2561 const vector<Subpass> subpasses (1, Subpass(VK_PIPELINE_BIND_POINT_GRAPHICS, 0u, inputAttachmentReferences, colorAttachmentReferences, vector<AttachmentReference>(), isDSFormat ? dsAttachmentReference : AttachmentReference(VK_ATTACHMENT_UNUSED, VK_IMAGE_LAYOUT_GENERAL), vector<deUint32>())); in iterateInternal() 3179 vector<AttachmentReference> colorAttachmentReferences; in iterateInternal() local 3185 colorAttachmentReferences.push_back(AttachmentReference(0u, VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL)); in iterateInternal() 3188 colorAttachmentReferences, vector<AttachmentReference>(), in iterateInternal() 3195 vector<AttachmentReference> colorAttachmentReferences; in iterateInternal() local 3931 vector<AttachmentReference> colorAttachmentReferences; initTests() local 4012 vector<AttachmentReference> colorAttachmentReferences; initTests() local [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/ |
H A D | vktPipelineFramebufferAttachmentTests.cpp | 135 vector<VkAttachmentReference> colorAttachmentReferences (numLayers); in makeRenderPass() 163 colorAttachmentReferences[i] = attachmentRef; in makeRenderPass() 172 &colorAttachmentReferences[i], // const VkAttachmentReference* pColorAttachments; in makeRenderPass() 960 vector<VkAttachmentReference> colorAttachmentReferences (numAttachments); in makeRenderPassMultiAttachments() 983 colorAttachmentReferences[i] = attachmentRef; in makeRenderPassMultiAttachments() 993 &colorAttachmentReferences[0], // const VkAttachmentReference* pColorAttachments; in makeRenderPassMultiAttachments()
|
H A D | vktPipelineImageSamplingInstance.cpp | 637 std::vector<VkAttachmentReference> colorAttachmentReferences(m_imageCount); in setup() 651 colorAttachmentReferences[imgNdx].attachment = (deUint32)imgNdx; // deUint32 attachment; in setup() 652 colorAttachmentReferences[imgNdx].layout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL; // VkImageLayout layout; in setup() 662 &colorAttachmentReferences[0], // const VkAttachmentReference* pColorAttachments; in setup()
|
H A D | vktPipelineRenderToImageTests.cpp | 388 vector<VkAttachmentReference> colorAttachmentReferences (numLayers); in makeRenderPass() 406 colorAttachmentReferences[i] = attachmentRef; in makeRenderPass() 417 &colorAttachmentReferences[i], // const VkAttachmentReference* pColorAttachments; in makeRenderPass()
|
H A D | vktPipelineMultisampleSampleLocationsExtTests.cpp | 789 m_subpasses.back().colorAttachmentReferences.push_back( in addSubpassColorAttachment() 797 m_subpasses.back().colorAttachmentReferences.push_back( in addSubpassColorAttachmentWithResolve() 864 static_cast<deUint32>(sd.colorAttachmentReferences.size()), // deUint32 colorAttachmentCount; in bake() 865 dataOrNullPtr(sd.colorAttachmentReferences), // const VkAttachmentReference* pColorAttachments; in bake() 970 std::vector<VkAttachmentReference> colorAttachmentReferences; member
|
H A D | vktPipelineMultisampleImageTests.cpp | 446 std::vector<VkAttachmentReference> colorAttachmentReferences(numLayers); in makeMultisampleRenderPass() 456 colorAttachmentReferences[i] = attachmentRef; in makeMultisampleRenderPass() 465 &colorAttachmentReferences[i], // const VkAttachmentReference* pColorAttachments; in makeMultisampleRenderPass()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/ |
H A D | vktPipelineFramebufferAttachmentTests.cpp | 138 vector<VkAttachmentReference> colorAttachmentReferences (numLayers); in makeRenderPass() 166 colorAttachmentReferences[i] = attachmentRef; in makeRenderPass() 175 &colorAttachmentReferences[i], // const VkAttachmentReference* pColorAttachments; in makeRenderPass() 968 vector<VkAttachmentReference> colorAttachmentReferences (numAttachments); in makeRenderPassMultiAttachments() 991 colorAttachmentReferences[i] = attachmentRef; in makeRenderPassMultiAttachments() 1001 &colorAttachmentReferences[0], // const VkAttachmentReference* pColorAttachments; in makeRenderPassMultiAttachments()
|
H A D | vktPipelineImageSamplingInstance.cpp | 639 std::vector<VkAttachmentReference> colorAttachmentReferences(m_imageCount); in setup() 653 colorAttachmentReferences[imgNdx].attachment = (deUint32)imgNdx; // deUint32 attachment; in setup() 654 colorAttachmentReferences[imgNdx].layout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL; // VkImageLayout layout; in setup() 664 &colorAttachmentReferences[0], // const VkAttachmentReference* pColorAttachments; in setup()
|
H A D | vktPipelineRenderToImageTests.cpp | 391 vector<VkAttachmentReference> colorAttachmentReferences (numLayers); in makeRenderPass() 409 colorAttachmentReferences[i] = attachmentRef; in makeRenderPass() 420 &colorAttachmentReferences[i], // const VkAttachmentReference* pColorAttachments; in makeRenderPass()
|
H A D | vktPipelineMultisampleSampleLocationsExtTests.cpp | 792 m_subpasses.back().colorAttachmentReferences.push_back( in addSubpassColorAttachment() 800 m_subpasses.back().colorAttachmentReferences.push_back( in addSubpassColorAttachmentWithResolve() 867 static_cast<deUint32>(sd.colorAttachmentReferences.size()), // deUint32 colorAttachmentCount; in bake() 868 dataOrNullPtr(sd.colorAttachmentReferences), // const VkAttachmentReference* pColorAttachments; in bake() 972 std::vector<VkAttachmentReference> colorAttachmentReferences; member
|
H A D | vktPipelineMultisampleImageTests.cpp | 449 std::vector<VkAttachmentReference> colorAttachmentReferences(numLayers); in makeMultisampleRenderPass() 459 colorAttachmentReferences[i] = attachmentRef; in makeMultisampleRenderPass() 468 &colorAttachmentReferences[i], // const VkAttachmentReference* pColorAttachments; in makeMultisampleRenderPass()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/fragment_shading_rate/ |
H A D | vktAttachmentRateTests.cpp | 360 std::vector<VkAttachmentReference2> colorAttachmentReferences(subpassCount, { in buildRenderPass() 392 &colorAttachmentReferences[0], // const VkAttachmentReference2* pColorAttachments; in buildRenderPass() 426 colorAttachmentReferences[1].attachment = 2; in buildRenderPass() 431 subpassDescriptions[1].pColorAttachments = &colorAttachmentReferences[1]; in buildRenderPass()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/image/ |
H A D | vktImageMutableTests.cpp | 674 vector<VkAttachmentReference> colorAttachmentReferences (numLayers); in makeRenderPass() 686 colorAttachmentReferences[i] = attachmentRef; in makeRenderPass() 695 &colorAttachmentReferences[i], // const VkAttachmentReference* pColorAttachments; in makeRenderPass()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/image/ |
H A D | vktImageMutableTests.cpp | 674 vector<VkAttachmentReference> colorAttachmentReferences (numLayers); in makeRenderPass() 686 colorAttachmentReferences[i] = attachmentRef; in makeRenderPass() 695 &colorAttachmentReferences[i], // const VkAttachmentReference* pColorAttachments; in makeRenderPass()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/fragment_shading_rate/ |
H A D | vktAttachmentRateTests.cpp | 478 std::vector<VkAttachmentReference2> colorAttachmentReferences(subpassCount, { in buildRenderPass() 510 &colorAttachmentReferences[0], // const VkAttachmentReference2* pColorAttachments; in buildRenderPass() 544 colorAttachmentReferences[1].attachment = 2; in buildRenderPass() 549 subpassDescriptions[1].pColorAttachments = &colorAttachmentReferences[1]; in buildRenderPass()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderexecutor/ |
H A D | vktShaderExecutor.cpp | 925 std::vector<VkAttachmentReference> colorAttachmentReferences; in execute() local 1035 colorAttachmentReferences.push_back(colorAttachmentReference); in execute() 1122 &colorAttachmentReferences[0], // const VkAttachmentReference* colorAttachments; in execute()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/shaderexecutor/ |
H A D | vktShaderExecutor.cpp | 925 std::vector<VkAttachmentReference> colorAttachmentReferences; in execute() local 1035 colorAttachmentReferences.push_back(colorAttachmentReference); in execute() 1122 &colorAttachmentReferences[0], // const VkAttachmentReference* colorAttachments; in execute()
|