Home
last modified time | relevance | path

Searched refs:attachmentDescriptions (Results 1 - 25 of 85) sorted by relevance

1234

/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/fragment_ops/
H A DvktFragmentOperationsTransientAttachmentTests.cpp186 Move<VkRenderPass> makeRenderPass (const DeviceInterface& vk, const VkDevice device, const std::vector<VkAttachmentDescription> attachmentDescriptions, const bool hasInputAttachment) in makeRenderPass() argument
188 const tcu::TextureFormat tcuFormat = mapVkFormat(attachmentDescriptions[0].format); in makeRenderPass()
194 const deUint32 maxAttachmentIndex = deUint32(attachmentDescriptions.size()) - 1u; in makeRenderPass()
196 for (deUint32 ref = 0; ref < attachmentDescriptions.size(); ref++) in makeRenderPass()
198 testReferences.push_back({ ref, attachmentDescriptions[ref].finalLayout }); in makeRenderPass()
220 deUint32(attachmentDescriptions.size()), // deUint32 attachmentCount in makeRenderPass()
221 attachmentDescriptions.data(), // const VkAttachmentDescription* pAttachments in makeRenderPass()
H A DvktFragmentOperationsEarlyFragmentTests.cpp1259 std::vector<VkAttachmentDescription2> attachmentDescriptions;
1262 attachmentDescriptions.push_back(colorAttachmentDescription);
1264 attachmentDescriptions.push_back(depthStencilAttachmentDescription);
1266 attachmentDescriptions.push_back(resolveAttachmentDescription);
1268 attachmentDescriptions.push_back(resolveDepthStencilAttachmentDescription);
1338 (deUint32)attachmentDescriptions.size(), // deUint32 attachmentCount
1339 attachmentDescriptions.size() > 0 ? &attachmentDescriptions[0] : DE_NULL, // const VkAttachmentDescription2* pAttachments
1989 std::vector<VkAttachmentDescription> attachmentDescriptions;
1991 attachmentDescriptions
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/fragment_ops/
H A DvktFragmentOperationsTransientAttachmentTests.cpp186 Move<VkRenderPass> makeRenderPass (const DeviceInterface& vk, const VkDevice device, const std::vector<VkAttachmentDescription> attachmentDescriptions, const bool hasInputAttachment) in makeRenderPass() argument
188 const tcu::TextureFormat tcuFormat = mapVkFormat(attachmentDescriptions[0].format); in makeRenderPass()
194 const deUint32 maxAttachmentIndex = deUint32(attachmentDescriptions.size()) - 1u; in makeRenderPass()
196 for (deUint32 ref = 0; ref < attachmentDescriptions.size(); ref++) in makeRenderPass()
198 testReferences.push_back({ ref, attachmentDescriptions[ref].finalLayout }); in makeRenderPass()
220 deUint32(attachmentDescriptions.size()), // deUint32 attachmentCount in makeRenderPass()
221 attachmentDescriptions.data(), // const VkAttachmentDescription* pAttachments in makeRenderPass()
H A DvktFragmentOperationsEarlyFragmentTests.cpp1259 std::vector<VkAttachmentDescription2> attachmentDescriptions;
1262 attachmentDescriptions.push_back(colorAttachmentDescription);
1264 attachmentDescriptions.push_back(depthStencilAttachmentDescription);
1266 attachmentDescriptions.push_back(resolveAttachmentDescription);
1268 attachmentDescriptions.push_back(resolveDepthStencilAttachmentDescription);
1338 (deUint32)attachmentDescriptions.size(), // deUint32 attachmentCount
1339 attachmentDescriptions.size() > 0 ? &attachmentDescriptions[0] : DE_NULL, // const VkAttachmentDescription2* pAttachments
1981 std::vector<VkAttachmentDescription> attachmentDescriptions;
1983 attachmentDescriptions
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineAttachmentFeedbackLoopLayoutTests.cpp633 std::vector<VkAttachmentDescription> attachmentDescriptions(m_imageCount); in setup()
641 attachmentDescriptions[imgNdx].flags = 0u; // VkAttachmentDescriptionFlags flags; in setup()
642 attachmentDescriptions[imgNdx].format = m_useImageAsColorOrDSAttachment ? m_imageFormat : m_colorFormat; // VkFormat format; in setup()
643 attachmentDescriptions[imgNdx].samples = VK_SAMPLE_COUNT_1_BIT; // VkSampleCountFlagBits samples; in setup()
644 attachmentDescriptions[imgNdx].loadOp = loadOp; // VkAttachmentLoadOp loadOp; in setup()
645 attachmentDescriptions[imgNdx].storeOp = VK_ATTACHMENT_STORE_OP_STORE; // VkAttachmentStoreOp storeOp; in setup()
646 attachmentDescriptions[imgNdx].stencilLoadOp = loadOp; // VkAttachmentLoadOp stencilLoadOp; in setup()
647 attachmentDescriptions[imgNdx].stencilStoreOp = VK_ATTACHMENT_STORE_OP_STORE; // VkAttachmentStoreOp stencilStoreOp; in setup()
648 attachmentDescriptions[imgNdx].initialLayout = imageLayout; // VkImageLayout initialLayout; in setup()
649 attachmentDescriptions[imgNd in setup()
[all...]
H A DvktPipelineMultisampleResolveRenderAreaTests.cpp155 std::vector<VkAttachmentDescription> attachmentDescriptions; in makeRenderPass() local
157 attachmentDescriptions.push_back(colorAttachmentDescription); in makeRenderPass()
158 attachmentDescriptions.push_back(resolveAttachmentDescription); in makeRenderPass()
191 (deUint32)attachmentDescriptions.size(), // uint32_t attachmentCount; in makeRenderPass()
192 attachmentDescriptions.data(), // const VkAttachmentDescription* pAttachments; in makeRenderPass()
H A DvktPipelineFramebufferAttachmentTests.cpp136 vector<VkAttachmentDescription> attachmentDescriptions (numLayers); in makeRenderPass()
155 attachmentDescriptions[attachmentIndex++] = colorAttachmentDescription; in makeRenderPass()
190 &attachmentDescriptions[0], // const VkAttachmentDescription* pAttachments; in makeRenderPass()
967 vector<VkAttachmentDescription> attachmentDescriptions (numAttachments); in makeRenderPassMultiAttachments()
984 attachmentDescriptions[i] = colorAttachmentDescription; in makeRenderPassMultiAttachments()
1014 &attachmentDescriptions[0], // const VkAttachmentDescription* pAttachments; in makeRenderPassMultiAttachments()
1402 std::vector<VkAttachmentDescription> attachmentDescriptions; in makeRenderPassInputResolveSameAttachment() local
1416 attachmentDescriptions.push_back(colorAttachmentDescription); in makeRenderPassInputResolveSameAttachment()
1431 attachmentDescriptions.push_back(inputAttachmentDescription); in makeRenderPassInputResolveSameAttachment()
1464 (deUint32)attachmentDescriptions in makeRenderPassInputResolveSameAttachment()
[all...]
H A DvktPipelineMultisampleMixedAttachmentSamplesTests.cpp925 std::vector<VkAttachmentDescription> attachmentDescriptions; in draw() local
938 attachmentDescriptions.push_back(makeAttachmentDescription( in draw()
950 attachmentDescriptions.push_back(makeAttachmentDescription( in draw()
1008 static_cast<deUint32>(attachmentDescriptions.size()), // deUint32 attachmentCount; in draw()
1009 dataOrNullPtr(attachmentDescriptions), // const VkAttachmentDescription* pAttachments; in draw()
1547 std::vector<VkAttachmentDescription> attachmentDescriptions; in drawResolve() local
1554 attachmentDescriptions.push_back(makeAttachmentDescription( in drawResolve()
1566 attachmentDescriptions.push_back(makeAttachmentDescription( in drawResolve()
1583 attachmentDescriptions.push_back(makeAttachmentDescription( in drawResolve()
1620 static_cast<deUint32>(attachmentDescriptions in drawResolve()
[all...]
H A DvktPipelineMultisampleShaderFragmentMaskTests.cpp663 std::vector<VkAttachmentDescription> attachmentDescriptions; in drawAndSampleInputAttachment() local
674 attachmentDescriptions.push_back(makeAttachmentDescription( in drawAndSampleInputAttachment()
752 static_cast<deUint32>(attachmentDescriptions.size()), // deUint32 attachmentCount; in drawAndSampleInputAttachment()
753 dataOrNullPtr(attachmentDescriptions), // const VkAttachmentDescription* pAttachments; in drawAndSampleInputAttachment()
955 std::vector<VkAttachmentDescription> attachmentDescriptions; in draw() local
967 attachmentDescriptions.push_back(makeAttachmentDescription( in draw()
1005 static_cast<deUint32>(attachmentDescriptions.size()), // deUint32 attachmentCount; in draw()
1006 dataOrNullPtr(attachmentDescriptions), // const VkAttachmentDescription* pAttachments; in draw()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/
H A DvktPipelineAttachmentFeedbackLoopLayoutTests.cpp566 std::vector<VkAttachmentDescription> attachmentDescriptions(m_imageCount); in setup()
574 attachmentDescriptions[imgNdx].flags = 0u; // VkAttachmentDescriptionFlags flags; in setup()
575 attachmentDescriptions[imgNdx].format = m_useImageAsColorOrDSAttachment ? m_imageFormat : m_colorFormat; // VkFormat format; in setup()
576 attachmentDescriptions[imgNdx].samples = VK_SAMPLE_COUNT_1_BIT; // VkSampleCountFlagBits samples; in setup()
577 attachmentDescriptions[imgNdx].loadOp = loadOp; // VkAttachmentLoadOp loadOp; in setup()
578 attachmentDescriptions[imgNdx].storeOp = VK_ATTACHMENT_STORE_OP_STORE; // VkAttachmentStoreOp storeOp; in setup()
579 attachmentDescriptions[imgNdx].stencilLoadOp = loadOp; // VkAttachmentLoadOp stencilLoadOp; in setup()
580 attachmentDescriptions[imgNdx].stencilStoreOp = VK_ATTACHMENT_STORE_OP_STORE; // VkAttachmentStoreOp stencilStoreOp; in setup()
581 attachmentDescriptions[imgNdx].initialLayout = imageLayout; // VkImageLayout initialLayout; in setup()
582 attachmentDescriptions[imgNd in setup()
[all...]
H A DvktPipelineMultisampleResolveRenderAreaTests.cpp153 std::vector<VkAttachmentDescription> attachmentDescriptions; in makeRenderPass() local
155 attachmentDescriptions.push_back(colorAttachmentDescription); in makeRenderPass()
156 attachmentDescriptions.push_back(resolveAttachmentDescription); in makeRenderPass()
189 (deUint32)attachmentDescriptions.size(), // uint32_t attachmentCount; in makeRenderPass()
190 attachmentDescriptions.data(), // const VkAttachmentDescription* pAttachments; in makeRenderPass()
H A DvktPipelineFramebufferAttachmentTests.cpp133 vector<VkAttachmentDescription> attachmentDescriptions (numLayers); in makeRenderPass()
152 attachmentDescriptions[attachmentIndex++] = colorAttachmentDescription; in makeRenderPass()
187 &attachmentDescriptions[0], // const VkAttachmentDescription* pAttachments; in makeRenderPass()
959 vector<VkAttachmentDescription> attachmentDescriptions (numAttachments); in makeRenderPassMultiAttachments()
976 attachmentDescriptions[i] = colorAttachmentDescription; in makeRenderPassMultiAttachments()
1006 &attachmentDescriptions[0], // const VkAttachmentDescription* pAttachments; in makeRenderPassMultiAttachments()
1390 std::vector<VkAttachmentDescription> attachmentDescriptions; in makeRenderPassInputResolveSameAttachment() local
1404 attachmentDescriptions.push_back(colorAttachmentDescription); in makeRenderPassInputResolveSameAttachment()
1419 attachmentDescriptions.push_back(inputAttachmentDescription); in makeRenderPassInputResolveSameAttachment()
1452 (deUint32)attachmentDescriptions in makeRenderPassInputResolveSameAttachment()
[all...]
H A DvktPipelineMultisampleMixedAttachmentSamplesTests.cpp921 std::vector<VkAttachmentDescription> attachmentDescriptions; in draw() local
932 attachmentDescriptions.push_back(makeAttachmentDescription( in draw()
944 attachmentDescriptions.push_back(makeAttachmentDescription( in draw()
1002 static_cast<deUint32>(attachmentDescriptions.size()), // deUint32 attachmentCount; in draw()
1003 dataOrNullPtr(attachmentDescriptions), // const VkAttachmentDescription* pAttachments; in draw()
1553 std::vector<VkAttachmentDescription> attachmentDescriptions; in drawResolve() local
1558 attachmentDescriptions.push_back(makeAttachmentDescription( in drawResolve()
1570 attachmentDescriptions.push_back(makeAttachmentDescription( in drawResolve()
1586 attachmentDescriptions.push_back(makeAttachmentDescription( in drawResolve()
1623 static_cast<deUint32>(attachmentDescriptions in drawResolve()
[all...]
H A DvktPipelineMultisampleShaderFragmentMaskTests.cpp681 std::vector<VkAttachmentDescription> attachmentDescriptions; in drawAndSampleInputAttachment() local
691 attachmentDescriptions.push_back(makeAttachmentDescription( in drawAndSampleInputAttachment()
769 static_cast<deUint32>(attachmentDescriptions.size()), // deUint32 attachmentCount; in drawAndSampleInputAttachment()
770 dataOrNullPtr(attachmentDescriptions), // const VkAttachmentDescription* pAttachments; in drawAndSampleInputAttachment()
981 std::vector<VkAttachmentDescription> attachmentDescriptions; in draw() local
992 attachmentDescriptions.push_back(makeAttachmentDescription( in draw()
1030 static_cast<deUint32>(attachmentDescriptions.size()), // deUint32 attachmentCount; in draw()
1031 dataOrNullPtr(attachmentDescriptions), // const VkAttachmentDescription* pAttachments; in draw()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/renderpass/
H A DvktRenderPassSubpassMergeFeedbackTests.cpp139 std::vector<AttachmentDescription2> attachmentDescriptions; in createRenderPassAndVerify() local
149 attachmentDescriptions.emplace_back( in createRenderPassAndVerify()
271 static_cast<deUint32>(attachmentDescriptions.size()), // deUint32 attachmentCount in createRenderPassAndVerify()
272 attachmentDescriptions.data(), // const VkAttachmentDescription* pAttachments in createRenderPassAndVerify()
H A DvktRenderPassFragmentDensityMapTests.cpp410 std::vector<AttachmentDesc> attachmentDescriptions in createRenderPassProduceDynamicDensityMap()
467 static_cast<deUint32>(attachmentDescriptions.size()), // deUint32 attachmentCount in createRenderPassProduceDynamicDensityMap()
468 attachmentDescriptions.data(), // const VkAttachmentDescription* pAttachments in createRenderPassProduceDynamicDensityMap()
492 std::vector<AttachmentDesc> attachmentDescriptions in createRenderPassProduceSubsampledImage()
512 multisampleAttachmentIndex = static_cast<deUint32>(attachmentDescriptions.size()); in createRenderPassProduceSubsampledImage()
513 attachmentDescriptions.emplace_back( in createRenderPassProduceSubsampledImage()
530 copyAttachmentIndex = static_cast<deUint32>(attachmentDescriptions.size()); in createRenderPassProduceSubsampledImage()
531 attachmentDescriptions.emplace_back( in createRenderPassProduceSubsampledImage()
546 densityMapAttachmentIndex = static_cast<deUint32>(attachmentDescriptions.size()); in createRenderPassProduceSubsampledImage()
547 attachmentDescriptions in createRenderPassProduceSubsampledImage()
[all...]
H A DvktRenderPassUnusedAttachmentSparseFillingTests.cpp668 std::vector<AttachmentDesc> attachmentDescriptions; in createRenderPass() local
677 attachmentDescriptions.push_back( in createRenderPass()
737 static_cast<deUint32>(attachmentDescriptions.size()), // deUint32 attachmentCount in createRenderPass()
738 attachmentDescriptions.data(), // const VkAttachmentDescription* pAttachments in createRenderPass()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/renderpass/
H A DvktRenderPassSubpassMergeFeedbackTests.cpp141 std::vector<AttachmentDescription2> attachmentDescriptions; in createRenderPassAndVerify() local
151 attachmentDescriptions.emplace_back( in createRenderPassAndVerify()
273 static_cast<deUint32>(attachmentDescriptions.size()), // deUint32 attachmentCount in createRenderPassAndVerify()
274 attachmentDescriptions.data(), // const VkAttachmentDescription* pAttachments in createRenderPassAndVerify()
H A DvktRenderPassFragmentDensityMapTests.cpp406 std::vector<AttachmentDesc> attachmentDescriptions in createRenderPassProduceDynamicDensityMap()
463 static_cast<deUint32>(attachmentDescriptions.size()), // deUint32 attachmentCount in createRenderPassProduceDynamicDensityMap()
464 attachmentDescriptions.data(), // const VkAttachmentDescription* pAttachments in createRenderPassProduceDynamicDensityMap()
488 std::vector<AttachmentDesc> attachmentDescriptions in createRenderPassProduceSubsampledImage()
508 multisampleAttachmentIndex = static_cast<deUint32>(attachmentDescriptions.size()); in createRenderPassProduceSubsampledImage()
509 attachmentDescriptions.emplace_back( in createRenderPassProduceSubsampledImage()
526 copyAttachmentIndex = static_cast<deUint32>(attachmentDescriptions.size()); in createRenderPassProduceSubsampledImage()
527 attachmentDescriptions.emplace_back( in createRenderPassProduceSubsampledImage()
542 densityMapAttachmentIndex = static_cast<deUint32>(attachmentDescriptions.size()); in createRenderPassProduceSubsampledImage()
543 attachmentDescriptions in createRenderPassProduceSubsampledImage()
[all...]
H A DvktRenderPassUnusedAttachmentSparseFillingTests.cpp670 std::vector<AttachmentDesc> attachmentDescriptions; in createRenderPass() local
679 attachmentDescriptions.push_back( in createRenderPass()
739 static_cast<deUint32>(attachmentDescriptions.size()), // deUint32 attachmentCount in createRenderPass()
740 attachmentDescriptions.data(), // const VkAttachmentDescription* pAttachments in createRenderPass()
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
H A DvkObjUtil.cpp616 std::vector<VkAttachmentDescription> attachmentDescriptions; in makeRenderPass() local
619 attachmentDescriptions.push_back(colorAttachmentDescription); in makeRenderPass()
621 attachmentDescriptions.push_back(depthStencilAttachmentDescription); in makeRenderPass()
654 (deUint32)attachmentDescriptions.size(), // deUint32 attachmentCount in makeRenderPass()
655 attachmentDescriptions.size() > 0 ? &attachmentDescriptions[0] : DE_NULL, // const VkAttachmentDescription* pAttachments in makeRenderPass()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/util/
H A DvktDrawUtil.cpp273 std::vector<VkAttachmentDescription> attachmentDescriptions; in VulkanDrawContext() local
316 attachmentDescriptions.push_back(attachDescriptors[0]); in VulkanDrawContext()
320 attachmentDescriptions.push_back(attachDescriptors[1]); in VulkanDrawContext()
343 (deUint32)attachmentDescriptions.size(), // deUint32 attachmentCount; in VulkanDrawContext()
344 attachmentDescriptions.data(), // const VkAttachmentDescription* pAttachments; in VulkanDrawContext()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/util/
H A DvktDrawUtil.cpp273 std::vector<VkAttachmentDescription> attachmentDescriptions; in VulkanDrawContext() local
316 attachmentDescriptions.push_back(attachDescriptors[0]); in VulkanDrawContext()
320 attachmentDescriptions.push_back(attachDescriptors[1]); in VulkanDrawContext()
343 (deUint32)attachmentDescriptions.size(), // deUint32 attachmentCount; in VulkanDrawContext()
344 attachmentDescriptions.data(), // const VkAttachmentDescription* pAttachments; in VulkanDrawContext()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/fragment_shading_rate/
H A DvktAttachmentRateTests.cpp399 std::vector<VkAttachmentDescription2> attachmentDescriptions(2 * subpassCount, { in buildRenderPass()
417 attachmentDescriptions[1].format = m_params->srFormat; in buildRenderPass()
418 attachmentDescriptions[1].loadOp = VK_ATTACHMENT_LOAD_OP_LOAD; in buildRenderPass()
419 attachmentDescriptions[1].storeOp = VK_ATTACHMENT_STORE_OP_DONT_CARE; in buildRenderPass()
420 attachmentDescriptions[1].initialLayout = VK_IMAGE_LAYOUT_FRAGMENT_SHADING_RATE_ATTACHMENT_OPTIMAL_KHR; in buildRenderPass()
433 attachmentDescriptions[3].format = m_params->srFormat; in buildRenderPass()
434 attachmentDescriptions[3].loadOp = VK_ATTACHMENT_LOAD_OP_LOAD; in buildRenderPass()
435 attachmentDescriptions[3].storeOp = VK_ATTACHMENT_STORE_OP_DONT_CARE; in buildRenderPass()
436 attachmentDescriptions[3].initialLayout = VK_IMAGE_LAYOUT_FRAGMENT_SHADING_RATE_ATTACHMENT_OPTIMAL_KHR; in buildRenderPass()
445 attachmentDescriptions in buildRenderPass()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/fragment_shading_rate/
H A DvktFragmentShadingRatePixelConsistency.cpp652 std::vector<VkAttachmentDescription> attachmentDescriptions; in iterate() local
654 attachmentDescriptions.push_back( in iterate()
668 attachmentDescriptions.push_back( in iterate()
726 (deUint32)attachmentDescriptions.size(), // attachmentCount in iterate()
727 &attachmentDescriptions[0], // pAttachments in iterate()

Completed in 44 milliseconds

1234