Home
last modified time | relevance | path

Searched refs:pipelineLayoutCreateInfo (Results 1 – 25 of 53) sorted by relevance

123

/external/llvm-project/mlir/tools/mlir-vulkan-runner/
DVulkanRuntime.cpp631 VkPipelineLayoutCreateInfo pipelineLayoutCreateInfo = {}; in createPipelineLayout() local
632 pipelineLayoutCreateInfo.sType = in createPipelineLayout()
634 pipelineLayoutCreateInfo.pNext = nullptr; in createPipelineLayout()
635 pipelineLayoutCreateInfo.flags = 0; in createPipelineLayout()
636 pipelineLayoutCreateInfo.setLayoutCount = descriptorSetLayouts.size(); in createPipelineLayout()
637 pipelineLayoutCreateInfo.pSetLayouts = descriptorSetLayouts.data(); in createPipelineLayout()
638 pipelineLayoutCreateInfo.pushConstantRangeCount = 0; in createPipelineLayout()
639 pipelineLayoutCreateInfo.pPushConstantRanges = 0; in createPipelineLayout()
641 &pipelineLayoutCreateInfo, 0, in createPipelineLayout()
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineMatchedAttachmentsTests.cpp97 const VkPipelineLayoutCreateInfo pipelineLayoutCreateInfo = in testMatchedAttachments() local
108 …ut> pipelineLayout (createPipelineLayout(vk, vkDevice, &pipelineLayoutCreateInfo, DE_NULL)… in testMatchedAttachments()
DvktPipelineEarlyDestroyTests.cpp87 const VkPipelineLayoutCreateInfo pipelineLayoutCreateInfo = in testEarlyDestroy() local
102 …> pipelineLayout (createPipelineLayout(vk, vkDevice, &pipelineLayoutCreateInfo, DE_NULL)… in testEarlyDestroy()
DvktPipelineCreationFeedbackTests.cpp1091 const VkPipelineLayoutCreateInfo pipelineLayoutCreateInfo = in buildPipeline() local
1102 m_pipelineLayout[ndx] = createPipelineLayout(vk, vkDevice, &pipelineLayoutCreateInfo); in buildPipeline()
/external/deqp/external/vulkancts/modules/vulkan/api/
DvktApiDescriptorSetTests.cpp63 const VkPipelineLayoutCreateInfo pipelineLayoutCreateInfo = in createPipelineLayoutDestroyDescriptorSetLayout() local
74 return createPipelineLayout(vk, device, &pipelineLayoutCreateInfo); in createPipelineLayoutDestroyDescriptorSetLayout()
539 const VkPipelineLayoutCreateInfo pipelineLayoutCreateInfo = in descriptorSetLayoutBindingOrderingTest() local
550 Move<VkPipelineLayout> pipelineLayout(createPipelineLayout(vk, device, &pipelineLayoutCreateInfo)); in descriptorSetLayoutBindingOrderingTest()
DvktApiPipelineTests.cpp249 const VkPipelineLayoutCreateInfo pipelineLayoutCreateInfo = in renderpassLifetimeTest() local
260 …pelineLayout> pipelineLayout (createPipelineLayout(vk, device, &pipelineLayoutCreateInfo)); in renderpassLifetimeTest()
654 const VkPipelineLayoutCreateInfo pipelineLayoutCreateInfo = in getPipelineLayout() local
665 return createPipelineLayout(vk, device, &pipelineLayoutCreateInfo); in getPipelineLayout()
1052 const VkPipelineLayoutCreateInfo pipelineLayoutCreateInfo = in pipelineLayoutLifetimeTest() local
1063 VK_CHECK(vk.createPipelineLayout(device, &pipelineLayoutCreateInfo, DE_NULL, &pipelineLayoutB)); in pipelineLayoutLifetimeTest()
/external/deqp/external/vulkancts/modules/vulkan/draw/
DvktDrawBaseClass.cpp49 const PipelineLayoutCreateInfo pipelineLayoutCreateInfo; in initialize() local
50 m_pipelineLayout = vk::createPipelineLayout(m_vk, device, &pipelineLayoutCreateInfo); in initialize()
DvktDrawDifferingInterpolationTests.cpp253 const PipelineLayoutCreateInfo pipelineLayoutCreateInfo; in iterate() local
254 …e<VkPipelineLayout> pipelineLayout = createPipelineLayout(vk, device, &pipelineLayoutCreateInfo); in iterate()
DvktDrawDepthClampTests.cpp297 const PipelineLayoutCreateInfo pipelineLayoutCreateInfo (0u, DE_NULL, 0u, DE_NULL); in DepthClampTestInstance() local
298 m_pipelineLayout = createPipelineLayout(vk, device, &pipelineLayoutCreateInfo); in DepthClampTestInstance()
DvktDrawNegativeViewportHeightTests.cpp210 const PipelineLayoutCreateInfo pipelineLayoutCreateInfo; in NegativeViewportHeightTestInstance() local
211 m_pipelineLayout = createPipelineLayout(vk, device, &pipelineLayoutCreateInfo); in NegativeViewportHeightTestInstance()
DvktDrawInvertedDepthRangesTests.cpp268 const PipelineLayoutCreateInfo pipelineLayoutCreateInfo; in InvertedDepthRangesTestInstance() local
269 m_pipelineLayout = createPipelineLayout(vk, device, &pipelineLayoutCreateInfo); in InvertedDepthRangesTestInstance()
DvktDrawAhbTests.cpp277 const PipelineLayoutCreateInfo pipelineLayoutCreateInfo; in iterate() local
278 …kPipelineLayout> pipelineLayout (createPipelineLayout(vk, device, &pipelineLayoutCreateInfo)); in iterate()
DvktDrawMultipleClearsWithinRenderPass.cpp322 const PipelineLayoutCreateInfo pipelineLayoutCreateInfo (0u, DE_NULL, 1u, &pcRange); in MultipleClearsTest() local
323 m_pipelineLayout = createPipelineLayout(vk, device, &pipelineLayoutCreateInfo); in MultipleClearsTest()
DvktDrawMultipleInterpolationTests.cpp455 const PipelineLayoutCreateInfo pipelineLayoutCreateInfo; in render() local
456 …ineLayout> pipelineLayout = createPipelineLayout(vk, device, &pipelineLayoutCreateInfo); in render()
DvktDrawInstancedTests.cpp354 const PipelineLayoutCreateInfo pipelineLayoutCreateInfo(0, DE_NULL, 1, &pushConstantRange); in InstancedDrawInstance() local
355 m_pipelineLayout = vk::createPipelineLayout(m_vk, device, &pipelineLayoutCreateInfo); in InstancedDrawInstance()
/external/swiftshader/tests/VulkanWrapper/
DDrawTester.cpp220 vk::PipelineLayoutCreateInfo pipelineLayoutCreateInfo; in createGraphicsPipeline() local
221 pipelineLayoutCreateInfo.setLayoutCount = static_cast<uint32_t>(setLayouts.size()); in createGraphicsPipeline()
222 pipelineLayoutCreateInfo.pSetLayouts = setLayouts.data(); in createGraphicsPipeline()
223 pipelineLayout = device.createPipelineLayout(pipelineLayoutCreateInfo); in createGraphicsPipeline()
/external/angle/third_party/vulkan_memory_allocator/src/
DSparseBindingTest.cpp315 …VkPipelineLayoutCreateInfo pipelineLayoutCreateInfo = { VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_I… in ValidateContent() local
316 pipelineLayoutCreateInfo.setLayoutCount = 1; in ValidateContent()
317 pipelineLayoutCreateInfo.pSetLayouts = &descSetLayout; in ValidateContent()
320 …TEST( vkCreatePipelineLayout(g_hDevice, &pipelineLayoutCreateInfo, nullptr, &pipelineLayout) == VK… in ValidateContent()
/external/deqp/external/vulkancts/modules/vulkan/dynamic_state/
DvktDynamicStateBaseClass.cpp53 const PipelineLayoutCreateInfo pipelineLayoutCreateInfo; in initialize() local
54 m_pipelineLayout = vk::createPipelineLayout(m_vk, device, &pipelineLayoutCreateInfo); in initialize()
DvktDynamicStateRSTests.cpp126 const PipelineLayoutCreateInfo pipelineLayoutCreateInfo; in initialize() local
127 m_pipelineLayout = vk::createPipelineLayout(m_vk, device, &pipelineLayoutCreateInfo); in initialize()
/external/deqp/external/vulkancts/modules/vulkan/fragment_shading_rate/
DvktFragmentShadingRatePixelConsistency.cpp881 const VkPipelineLayoutCreateInfo pipelineLayoutCreateInfo = in iterate() local
892 pipelineLayoutPass0 = createPipelineLayout(vk, device, &pipelineLayoutCreateInfo, NULL); in iterate()
1017 const VkPipelineLayoutCreateInfo pipelineLayoutCreateInfo = in iterate() local
1028 pipelineLayoutPass1 = createPipelineLayout(vk, device, &pipelineLayoutCreateInfo, NULL); in iterate()
/external/deqp/external/vulkancts/modules/vulkan/compute/
DvktComputeZeroInitializeWorkgroupMemoryTests.cpp106 const VkPipelineLayoutCreateInfo pipelineLayoutCreateInfo = local
116 …Move<VkPipelineLayout> pipelineLayout = createPipelineLayout(vk, device, &pipelineLayoutCreateInfo
1283 const VkPipelineLayoutCreateInfo pipelineLayoutCreateInfo = in iterate() local
1293 …Move<VkPipelineLayout> pipelineLayout = createPipelineLayout(vk, device, &pipelineLayoutCreateInfo in iterate()
/external/deqp/external/vulkancts/modules/vulkan/fragment_shader_interlock/
DvktFragmentShaderInterlockBasic.cpp461 const VkPipelineLayoutCreateInfo pipelineLayoutCreateInfo = in iterate() local
472 …Move<VkPipelineLayout> pipelineLayout = createPipelineLayout(vk, device, &pipelineLayoutCreateInfo in iterate()
/external/deqp/external/vulkancts/modules/vulkan/renderpass/
DvktRenderPassSubpassDependencyTests.cpp1996 const VkPipelineLayoutCreateInfo pipelineLayoutCreateInfo = in iterateInternal() local
2007 pipelineLayout = createPipelineLayout(vkd, device, &pipelineLayoutCreateInfo); in iterateInternal()
2526 const VkPipelineLayoutCreateInfo pipelineLayoutCreateInfo = in iterateInternal() local
2537 pipelineLayout = createPipelineLayout(vkd, device, &pipelineLayoutCreateInfo); in iterateInternal()
3124 const VkPipelineLayoutCreateInfo pipelineLayoutCreateInfo = in iterateInternal() local
3135 pipelineLayoutInput = createPipelineLayout(vkd, device, &pipelineLayoutCreateInfo); in iterateInternal()
3138 const VkPipelineLayoutCreateInfo pipelineLayoutCreateInfo = in iterateInternal() local
3149 pipelineLayoutImageSampler = createPipelineLayout(vkd, device, &pipelineLayoutCreateInfo); in iterateInternal()
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
DvktShaderFConvertTests.cpp771 const vk::VkPipelineLayoutCreateInfo pipelineLayoutCreateInfo = in iterate() local
781 auto pipelineLayout = vk::createPipelineLayout(vkd, device, &pipelineLayoutCreateInfo); in iterate()
/external/deqp/external/vulkancts/modules/vulkan/query_pool/
DvktQueryPoolConcurrentTests.cpp189 const PipelineLayoutCreateInfo pipelineLayoutCreateInfo; in StateObjects() local
190 m_pipelineLayout = vk::createPipelineLayout(vk, device, &pipelineLayoutCreateInfo); in StateObjects()

123