Home
last modified time | relevance | path

Searched refs:inputAttachments (Results 1 – 9 of 9) sorted by relevance

/external/deqp/external/vulkancts/modules/vulkan/descriptor_indexing/
DvktDescriptorSetsIndexingTestsUtils.cpp707 deUint32 inputAttachments = 0; in computeMaxPerStageDescriptorCount() local
724inputAttachments = deMinu32( descriptorProps.maxPerStageDescriptorUpdateAfterBindInputAttachments… in computeMaxPerStageDescriptorCount()
735inputAttachments = deMinu32( deviceProps.limits.maxPerStageDescriptorInputAttachments - 1, devi… in computeMaxPerStageDescriptorCount()
746 inputAttachments = deMinu32( inputAttachments, 16); in computeMaxPerStageDescriptorCount()
760 …case VK_DESCRIPTOR_TYPE_INPUT_ATTACHMENT: result = deMinu32(resources, inputAttachments); b… in computeMaxPerStageDescriptorCount()
DvktDescriptorSetsIndexingTests.cpp3517 std::vector<VkImageView> inputAttachments; in createFramebuffer() local
3519 inputAttachments.resize(viewCount); in createFramebuffer()
3522 inputAttachments[viewIdx] = **variables.descriptorImageViews[viewIdx]; in createFramebuffer()
3524 …text, m_testParams.frameResolution, m_colorFormat, renderPass, viewCount, inputAttachments.data()); in createFramebuffer()
/external/deqp/external/vulkancts/modules/vulkan/binding_model/
DvktBindingDescriptorSetRandomTests.cpp726 deUint32 inputAttachments = 0; in initPrograms() local
784 …decls << "layout(input_attachment_index = " << inputAttachments << ", set = " << s << ", binding =… in initPrograms()
785 inputAttachments += binding.descriptorCount; in initPrograms()
1517 vector<Move<VkImage>> inputAttachments; in iterate() local
1547 inputAttachments.push_back(createImage(vk, device, &imgCreateInfo)); in iterate()
1557 …VkMemoryRequirements imageReqs = getImageMemoryRequirements(vk, device, inputAttachments.back().g… in iterate()
1585 for (deUint32 i = 0; i < static_cast<deUint32>(inputAttachments.size()); ++i) in iterate()
1587 vk::VkImage img = *inputAttachments[i]; in iterate()
1788 VkImage img = *inputAttachments[attachmentIndex]; in iterate()
2415 …vector<VkAttachmentDescription> attachmentDescriptions (inputAttachments.size(), attachmentDescrip… in iterate()
[all …]
DvktBindingDescriptorUpdateTests.cpp553 std::vector<vk::VkAttachmentReference> inputAttachments; in iterate() local
562 inputAttachments.push_back(inputRef); in iterate()
576 static_cast<deUint32>(inputAttachments.size()), // deUint32 inputAttachmentCount; in iterate()
577 …(inputAttachments.empty() ? nullptr : inputAttachments.data()), // const VkAttachmentReference* p… in iterate()
DvktBindingDescriptorCopyTests.cpp1558 vector<VkAttachmentReference> inputAttachments; in run() local
2048 inputAttachments.insert(inputAttachments.end(), references.begin(), references.end()); in run()
2079 …for (size_t inputAttachmentIdx = 0; inputAttachmentIdx < inputAttachments.size(); inputAttachmentI… in run()
2086 (deUint32)inputAttachments.size(), // deUint32 inputAttachmentCount in run()
2087inputAttachments.empty() ? DE_NULL : inputAttachments.data(), // const VkAttachmentReference* pInp… in run()
/external/deqp/external/vulkancts/modules/vulkan/renderpass/
DvktRenderPassTestsUtil.hpp294 const std::vector<AttachmentReference>& inputAttachments,
DvktRenderPassTestsUtil.cpp403 const std::vector<AttachmentReference>& inputAttachments, in Subpass() argument
412 ,m_inputAttachments (inputAttachments) in Subpass()
DvktRenderPassTests.cpp587 const vector<AttachmentReference>& inputAttachments, in Subpass() argument
595 , m_inputAttachments (inputAttachments) in Subpass()
904 const vector<AttachmentReference>& inputAttachments = subpass.getInputAttachments(); in logRenderPassInfo() local
909 if (!inputAttachments.empty()) in logRenderPassInfo()
913 for (size_t inputNdx = 0; inputNdx < inputAttachments.size(); inputNdx++) in logRenderPassInfo()
916 const AttachmentReference& inputAttachment = inputAttachments[inputNdx]; in logRenderPassInfo()
/external/deqp/external/vulkancts/modules/vulkan/draw/
DvktDrawCreateInfoUtil.hpp161 const vk::VkAttachmentReference* inputAttachments,