/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/ |
H A D | vktPipelineDynamicControlPoints.cpp | 307 const vk::PipelineLayoutWrapper graphicsPipelineLayout (m_config.constructionType, vkd, device); in iterate() 352 graphicsPipelineLayout, in iterate() 357 .setupFragmentShaderState(graphicsPipelineLayout, *renderPass, 0u, in iterate() 360 .setMonolithicPipelineLayout(graphicsPipelineLayout).buildPipeline(); in iterate() 372 graphicsPipelineLayout, in iterate() 377 .setupFragmentShaderState(graphicsPipelineLayout, *renderPass, 0u, in iterate() 380 .setMonolithicPipelineLayout(graphicsPipelineLayout).buildPipeline(); in iterate()
|
H A D | vktPipelineBindPointTests.cpp | 483 PipelineLayoutWrapper graphicsPipelineLayout; in iterate() local 487 if (hasGraphics) graphicsPipelineLayout = PipelineLayoutWrapper(m_params.pipelineConstructionType, vkd, device, graphicsSetLayout.get()); in iterate() 532 graphicsPipelineLayout, in iterate() 536 .setupFragmentShaderState(graphicsPipelineLayout, *renderPass, 0u, fragShader) in iterate() 538 .setMonolithicPipelineLayout(graphicsPipelineLayout) in iterate() 630 graphicsUpdateTemplate = makeUpdateTemplate(vkd, device, graphicsSetLayout.get(), VK_PIPELINE_BIND_POINT_GRAPHICS, graphicsPipelineLayout.get()); in iterate() 671 vkd.cmdBindDescriptorSets(cmdBuffer, VK_PIPELINE_BIND_POINT_GRAPHICS, graphicsPipelineLayout.get(), 0u, 1u, &graphicsDescritorSet.get(), 0u, nullptr); in iterate() 673 pushBufferDescriptor(vkd, cmdBuffer, VK_PIPELINE_BIND_POINT_GRAPHICS, graphicsPipelineLayout.get(), graphicsBuffer->get(), 0ull, bufferSize); in iterate() 677 vkd.cmdPushDescriptorSetWithTemplateKHR(cmdBuffer, graphicsUpdateTemplate.get(), graphicsPipelineLayout.get(), 0u, &bufferInfo); in iterate()
|
H A D | vktPipelineMiscTests.cpp | 1167 vk::PipelineLayoutWrapper graphicsPipelineLayout (type, vkd, device, descriptorSetLayout.get()); in runTest() 1215 graphicsPipelineLayout, in runTest() 1219 .setupFragmentShaderState(graphicsPipelineLayout, DE_NULL, 0u, in runTest() 1222 .setMonolithicPipelineLayout(graphicsPipelineLayout).buildPipeline(); in runTest() 1265 vkd.cmdBindDescriptorSets(*commandBuffer, VK_PIPELINE_BIND_POINT_GRAPHICS, graphicsPipelineLayout.get(), 0u, 1, &descriptorSetBuffer.get(), 0u, nullptr); in runTest()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/ |
H A D | vktPipelineDynamicControlPoints.cpp | 303 auto graphicsPipelineLayout = vk::makePipelineLayout(vkd, device); in iterate() local 348 *graphicsPipelineLayout, in iterate() 353 .setupFragmentShaderState(*graphicsPipelineLayout, *renderPass, 0u, in iterate() 356 .setMonolithicPipelineLayout(*graphicsPipelineLayout).buildPipeline(); in iterate() 368 *graphicsPipelineLayout, in iterate() 373 .setupFragmentShaderState(*graphicsPipelineLayout, *renderPass, 0u, in iterate() 376 .setMonolithicPipelineLayout(*graphicsPipelineLayout).buildPipeline(); in iterate()
|
H A D | vktPipelineBindPointTests.cpp | 481 Move<VkPipelineLayout> graphicsPipelineLayout; in iterate() local 485 if (hasGraphics) graphicsPipelineLayout = makePipelineLayout(vkd, device, graphicsSetLayout.get()); in iterate() 531 *graphicsPipelineLayout, in iterate() 535 .setupFragmentShaderState(*graphicsPipelineLayout, *renderPass, 0u, *fragShader) in iterate() 537 .setMonolithicPipelineLayout(*graphicsPipelineLayout) in iterate() 629 graphicsUpdateTemplate = makeUpdateTemplate(vkd, device, graphicsSetLayout.get(), VK_PIPELINE_BIND_POINT_GRAPHICS, graphicsPipelineLayout.get()); in iterate() 670 vkd.cmdBindDescriptorSets(cmdBuffer, VK_PIPELINE_BIND_POINT_GRAPHICS, graphicsPipelineLayout.get(), 0u, 1u, &graphicsDescritorSet.get(), 0u, nullptr); in iterate() 672 pushBufferDescriptor(vkd, cmdBuffer, VK_PIPELINE_BIND_POINT_GRAPHICS, graphicsPipelineLayout.get(), graphicsBuffer->get(), 0ull, bufferSize); in iterate() 676 vkd.cmdPushDescriptorSetWithTemplateKHR(cmdBuffer, graphicsUpdateTemplate.get(), graphicsPipelineLayout.get(), 0u, &bufferInfo); in iterate()
|
H A D | vktPipelineMiscTests.cpp | 1176 auto graphicsPipelineLayout = vk::makePipelineLayout(vkd, device, descriptorSetLayout.get()); in runTest() local 1224 *graphicsPipelineLayout, in runTest() 1228 .setupFragmentShaderState(*graphicsPipelineLayout, DE_NULL, 0u, in runTest() 1231 .setMonolithicPipelineLayout(*graphicsPipelineLayout).buildPipeline(); in runTest() 1274 vkd.cmdBindDescriptorSets(*commandBuffer, VK_PIPELINE_BIND_POINT_GRAPHICS, graphicsPipelineLayout.get(), 0u, 1, &descriptorSetBuffer.get(), 0u, nullptr); in runTest()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/draw/ |
H A D | vktDrawSampleAttributeTests.cpp | 309 const auto graphicsPipelineLayout = makePipelineLayout(ctx.vkd, ctx.device, descriptorSetLayout.get()); in iterate() local 338 graphicsPipelineLayout.get(), // const VkPipelineLayout pipelineLayout in iterate() 388 ctx.vkd.cmdBindDescriptorSets(secondaryCmdBuffer, VK_PIPELINE_BIND_POINT_GRAPHICS, graphicsPipelineLayout.get(), 0u, 1, &descriptorSetBuffer.get(), 0u, nullptr); in iterate() 408 ctx.vkd.cmdBindDescriptorSets(secondaryCmdBuffer, VK_PIPELINE_BIND_POINT_GRAPHICS, graphicsPipelineLayout.get(), 0u, 1, &descriptorSetBuffer.get(), 0u, nullptr); in iterate() 418 ctx.vkd.cmdBindDescriptorSets(primaryCmdBuffer, VK_PIPELINE_BIND_POINT_GRAPHICS, graphicsPipelineLayout.get(), 0u, 1, &descriptorSetBuffer.get(), 0u, nullptr); in iterate() 440 ctx.vkd.cmdBindDescriptorSets(primaryCmdBuffer, VK_PIPELINE_BIND_POINT_GRAPHICS, graphicsPipelineLayout.get(), 0u, 1, &descriptorSetBuffer.get(), 0u, nullptr); in iterate()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/image/ |
H A D | vktImageSampleCompressedTextureTests.cpp | 456 const Move<VkPipelineLayout> graphicsPipelineLayout = makePipelineLayout(vk, device, 1, &(*graphicsDscrSetLayout), 1, &pushConstantRange2); in iterate() local 488 const Move<VkPipeline> graphicsPipeline = makeGraphicsPipeline(vk, device, graphicsPipelineLayout.get(), vertexShader.get(), DE_NULL, in iterate() 544 vk.cmdPushConstants(*cmdBuffer, *graphicsPipelineLayout, VK_SHADER_STAGE_FRAGMENT_BIT, 0, sizeof(deInt32), &pass); in iterate() 553 vk.cmdBindDescriptorSets(*cmdBuffer, VK_PIPELINE_BIND_POINT_GRAPHICS, *graphicsPipelineLayout, 0u, 1u, &(cubeSamplerDescriptorSets[face].get()), 0u, DE_NULL); in iterate() 571 vk.cmdBindDescriptorSets(*cmdBuffer, VK_PIPELINE_BIND_POINT_GRAPHICS, *graphicsPipelineLayout, 0u, 1u, &(graphicsDescriptorSet.get()), 0u, DE_NULL); in iterate()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/image/ |
H A D | vktImageSampleCompressedTextureTests.cpp | 456 const Move<VkPipelineLayout> graphicsPipelineLayout = makePipelineLayout(vk, device, 1, &(*graphicsDscrSetLayout), 1, &pushConstantRange2); in iterate() local 488 const Move<VkPipeline> graphicsPipeline = makeGraphicsPipeline(vk, device, graphicsPipelineLayout.get(), vertexShader.get(), DE_NULL, in iterate() 544 vk.cmdPushConstants(*cmdBuffer, *graphicsPipelineLayout, VK_SHADER_STAGE_FRAGMENT_BIT, 0, sizeof(deInt32), &pass); in iterate() 553 vk.cmdBindDescriptorSets(*cmdBuffer, VK_PIPELINE_BIND_POINT_GRAPHICS, *graphicsPipelineLayout, 0u, 1u, &(cubeSamplerDescriptorSets[face].get()), 0u, DE_NULL); in iterate() 571 vk.cmdBindDescriptorSets(*cmdBuffer, VK_PIPELINE_BIND_POINT_GRAPHICS, *graphicsPipelineLayout, 0u, 1u, &(graphicsDescriptorSet.get()), 0u, DE_NULL); in iterate()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/fragment_shading_rate/ |
H A D | vktAttachmentRateTests.cpp | 1134 Move<VkPipelineLayout> graphicsPipelineLayout = buildPipelineLayout(&(*m_counterBufferDescriptorSetLayout)); in runComputeShaderMode() local 1137 Move<VkPipeline> graphicsPipeline = buildGraphicsPipeline(0, *renderPass, m_cbFormat, *graphicsPipelineLayout, *vertShader, *fragShader); in runComputeShaderMode() 1197 vk.cmdBindDescriptorSets(*cmdBuffer, VK_PIPELINE_BIND_POINT_GRAPHICS, *graphicsPipelineLayout, 0, 1, &(*m_counterBufferDescriptorSet), 0, DE_NULL); in runComputeShaderMode() 1410 Move<VkPipelineLayout> graphicsPipelineLayout = buildPipelineLayout(&(*m_counterBufferDescriptorSetLayout)); in runCopyMode() local 1412 Move<VkPipeline> graphicsPipeline = buildGraphicsPipeline(0, *renderPass, m_cbFormat, *graphicsPipelineLayout, *vertShader, *fragShader); in runCopyMode() 1491 vk.cmdBindDescriptorSets(*cmdBuffer, VK_PIPELINE_BIND_POINT_GRAPHICS, *graphicsPipelineLayout, 0, 1, &(*m_counterBufferDescriptorSet), 0, DE_NULL); in runCopyMode() 1666 Move<VkPipelineLayout> graphicsPipelineLayout = buildPipelineLayout(&(*m_counterBufferDescriptorSetLayout)); in runCopyModeOnTransferQueue() local 1668 Move<VkPipeline> graphicsPipeline = buildGraphicsPipeline(0, *renderPass, m_cbFormat, *graphicsPipelineLayout, *vertShader, *fragShader); in runCopyModeOnTransferQueue() 1770 vk.cmdBindDescriptorSets(*graphicsCmdBuffer, VK_PIPELINE_BIND_POINT_GRAPHICS, *graphicsPipelineLayout, 0, 1, &(*m_counterBufferDescriptorSet), 0, DE_NULL); in runCopyModeOnTransferQueue() 1884 Move<VkPipelineLayout> graphicsPipelineLayout in runFillLinearTiledImage() local [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/fragment_shading_rate/ |
H A D | vktAttachmentRateTests.cpp | 1313 Move<VkPipelineLayout> graphicsPipelineLayout = buildPipelineLayout(device, vk, &(*m_counterBufferDescriptorSetLayout)); in runComputeShaderMode() local 1316 Move<VkPipeline> graphicsPipeline = buildGraphicsPipeline(device, vk, 0, *renderPass, m_cbFormat, dsFormat, *graphicsPipelineLayout, *vertShader, *fragShader); in runComputeShaderMode() 1380 vk.cmdBindDescriptorSets(*cmdBuffer, VK_PIPELINE_BIND_POINT_GRAPHICS, *graphicsPipelineLayout, 0, 1, &(*m_counterBufferDescriptorSet), 0, DE_NULL); in runComputeShaderMode() 1614 Move<VkPipelineLayout> graphicsPipelineLayout = buildPipelineLayout(device, vk, &(*m_counterBufferDescriptorSetLayout)); in runCopyMode() local 1616 Move<VkPipeline> graphicsPipeline = buildGraphicsPipeline(device, vk, 0, *renderPass, m_cbFormat, dsFormat, *graphicsPipelineLayout, *vertShader, *fragShader); in runCopyMode() 1699 vk.cmdBindDescriptorSets(*cmdBuffer, VK_PIPELINE_BIND_POINT_GRAPHICS, *graphicsPipelineLayout, 0, 1, &(*m_counterBufferDescriptorSet), 0, DE_NULL); in runCopyMode() 1887 Move<VkPipelineLayout> graphicsPipelineLayout = buildPipelineLayout(device, vk, &(*m_counterBufferDescriptorSetLayout)); in runCopyModeOnTransferQueue() local 1889 Move<VkPipeline> graphicsPipeline = buildGraphicsPipeline(device, vk, 0, *renderPass, m_cbFormat, dsFormat, *graphicsPipelineLayout, *vertShader, *fragShader); in runCopyModeOnTransferQueue() 1993 vk.cmdBindDescriptorSets(*graphicsCmdBuffer, VK_PIPELINE_BIND_POINT_GRAPHICS, *graphicsPipelineLayout, 0, 1, &(*m_counterBufferDescriptorSet), 0, DE_NULL); in runCopyModeOnTransferQueue() 2108 Move<VkPipelineLayout> graphicsPipelineLayout in runFillLinearTiledImage() local [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/renderpass/ |
H A D | vktRenderPassTests.cpp | 5482 auto graphicsPipelineLayout = makePipelineLayout(vkd, device);
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/renderpass/ |
H A D | vktRenderPassTests.cpp | 5457 auto graphicsPipelineLayout = makePipelineLayout(vkd, device);
|