Home
last modified time | relevance | path

Searched refs:inputAssemblyState (Results 1 - 21 of 21) sorted by relevance

/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/synchronization/
H A DvktSynchronizationSmokeTests.cpp713 VkPipelineInputAssemblyStateCreateInfo inputAssemblyState; in generateWork() local
810 deMemset(&inputAssemblyState, 0xcd, sizeof(inputAssemblyState)); in generateWork()
811 inputAssemblyState.sType = VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO; in generateWork()
812 inputAssemblyState.pNext = DE_NULL; in generateWork()
813 inputAssemblyState.flags = 0u; in generateWork()
814 inputAssemblyState.topology = VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST; in generateWork()
815 inputAssemblyState.primitiveRestartEnable = false; in generateWork()
914 pipelineState.pInputAssemblyState = &inputAssemblyState; in generateWork()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/synchronization/
H A DvktSynchronizationSmokeTests.cpp714 VkPipelineInputAssemblyStateCreateInfo inputAssemblyState; in generateWork() local
811 deMemset(&inputAssemblyState, 0xcd, sizeof(inputAssemblyState)); in generateWork()
812 inputAssemblyState.sType = VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO; in generateWork()
813 inputAssemblyState.pNext = DE_NULL; in generateWork()
814 inputAssemblyState.flags = 0u; in generateWork()
815 inputAssemblyState.topology = VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST; in generateWork()
816 inputAssemblyState.primitiveRestartEnable = false; in generateWork()
915 pipelineState.pInputAssemblyState = &inputAssemblyState; in generateWork()
/third_party/skia/third_party/externals/swiftshader/src/Device/
H A DContext.cpp310 const VkPipelineInputAssemblyStateCreateInfo *inputAssemblyState = pCreateInfo->pInputAssemblyState; in GraphicsState()
312 if(inputAssemblyState->flags != 0) in GraphicsState()
318 primitiveRestartEnable = (inputAssemblyState->primitiveRestartEnable != VK_FALSE); in GraphicsState()
319 topology = inputAssemblyState->topology; in GraphicsState()
/third_party/skia/third_party/externals/swiftshader/tests/VulkanWrapper/
H A DDrawTester.cpp229 vk::PipelineInputAssemblyStateCreateInfo inputAssemblyState; in createGraphicsPipeline() local
230 inputAssemblyState.topology = vk::PrimitiveTopology::eTriangleList; in createGraphicsPipeline()
293 pipelineCreateInfo.pInputAssemblyState = &inputAssemblyState; in createGraphicsPipeline()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineBindVertexBuffers2Tests.cpp365 vk::VkPipelineInputAssemblyStateCreateInfo inputAssemblyState = vk::initVulkanStructure(); in iterate() local
366 inputAssemblyState.topology = vk::VK_PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP; in iterate()
385 .setupVertexInputState(&vertexInputState, &inputAssemblyState) in iterate()
683 vk::VkPipelineInputAssemblyStateCreateInfo inputAssemblyState = vk::initVulkanStructure(); in createPipeline() local
684 inputAssemblyState.topology = m_params.topology; in createPipeline()
719 .setupVertexInputState(&vertexInputState, &inputAssemblyState) in createPipeline()
H A DvktPipelineShaderModuleIdentifierTests.cpp2113 const VkPipelineInputAssemblyStateCreateInfo inputAssemblyState = in iterate() local
2211 .setupVertexInputState(&vertexInputState, &inputAssemblyState, pipelineCache.get()) in iterate()
2292 .setupVertexInputState(&vertexInputState, &inputAssemblyState, pipelineCache.get()) in iterate()
3257 const VkPipelineInputAssemblyStateCreateInfo inputAssemblyState = in iterate() local
3302 .setupVertexInputState(&vertexInputState, &inputAssemblyState, pipelineCache.get()) in iterate()
3372 .setupVertexInputState(&vertexInputState, &inputAssemblyState, pipelineCache.get()) in iterate()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/
H A DvktPipelineShaderModuleIdentifierTests.cpp2102 const VkPipelineInputAssemblyStateCreateInfo inputAssemblyState = in iterate() local
2197 .setupVertexInputState(&vertexInputState, &inputAssemblyState, pipelineCache.get()) in iterate()
2278 .setupVertexInputState(&vertexInputState, &inputAssemblyState, pipelineCache.get()) in iterate()
3241 const VkPipelineInputAssemblyStateCreateInfo inputAssemblyState = in iterate() local
3286 .setupVertexInputState(&vertexInputState, &inputAssemblyState, pipelineCache.get()) in iterate()
3356 .setupVertexInputState(&vertexInputState, &inputAssemblyState, pipelineCache.get()) in iterate()
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
H A DvkPipelineConstructionUtil.cpp1804 VkPipelineInputAssemblyStateCreateInfo inputAssemblyState; member
1940 , inputAssemblyState in InternalData()
2206 m_internalData->inputAssemblyState.topology = topology; in setDefaultTopology()
2365 const VkPipelineInputAssemblyStateCreateInfo* inputAssemblyState, in setupVertexInputState()
2385 const auto pInputAssemblyState = ((inputAssemblyState || useNullPtrs) ? inputAssemblyState : &m_internalData->inputAssemblyState); in setupVertexInputState()
2364 setupVertexInputState(const VkPipelineVertexInputStateCreateInfo* vertexInputState, const VkPipelineInputAssemblyStateCreateInfo* inputAssemblyState, const VkPipelineCache partPipelineCache, PipelineCreationFeedbackCreateInfoWrapper partCreationFeedback, const bool useNullPtrs) setupVertexInputState() argument
H A DvkPipelineConstructionUtil.hpp412 const VkPipelineInputAssemblyStateCreateInfo* inputAssemblyState = nullptr,
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
H A Dvk_cache_utils.cpp1714 VkPipelineInputAssemblyStateCreateInfo inputAssemblyState = {};
1794 sizeof(inputAssemblyState) + sizeof(viewportState) + sizeof(rasterState) +
1893 inputAssemblyState.sType = VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO;
1894 inputAssemblyState.flags = 0;
1895 inputAssemblyState.topology =
1906 inputAssemblyState.primitiveRestartEnable =
2116 createInfo.pInputAssemblyState = &inputAssemblyState;
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/memory/
H A DvktMemoryAddressBindingTests.cpp1118 const VkPipelineInputAssemblyStateCreateInfo inputAssemblyState = in create() local
1231 &inputAssemblyState, // const VkPipelineInputAssemblyStateCreateInfo* pInputAssemblyState; in create()
H A DvktMemoryDeviceMemoryReportTests.cpp1103 const VkPipelineInputAssemblyStateCreateInfo inputAssemblyState = in create() local
1216 &inputAssemblyState, // const VkPipelineInputAssemblyStateCreateInfo* pInputAssemblyState; in create()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/memory/
H A DvktMemoryAddressBindingTests.cpp1079 const VkPipelineInputAssemblyStateCreateInfo inputAssemblyState = in create() local
1192 &inputAssemblyState, // const VkPipelineInputAssemblyStateCreateInfo* pInputAssemblyState; in create()
H A DvktMemoryDeviceMemoryReportTests.cpp1097 const VkPipelineInputAssemblyStateCreateInfo inputAssemblyState = in create() local
1210 &inputAssemblyState, // const VkPipelineInputAssemblyStateCreateInfo* pInputAssemblyState; in create()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/binding_model/
H A DvktBindingDescriptorBufferTests.cpp3444 VkPipelineInputAssemblyStateCreateInfo inputAssemblyState = initVulkanStructure();
3445 inputAssemblyState.topology = !!tessControlModule ? VK_PRIMITIVE_TOPOLOGY_PATCH_LIST : VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST;
3493 createInfo.pInputAssemblyState = &inputAssemblyState;
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/binding_model/
H A DvktBindingDescriptorBufferTests.cpp3415 VkPipelineInputAssemblyStateCreateInfo inputAssemblyState = initVulkanStructure();
3416 inputAssemblyState.topology = !!tessControlModule ? VK_PRIMITIVE_TOPOLOGY_PATCH_LIST : VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST;
3464 createInfo.pInputAssemblyState = &inputAssemblyState;
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/api/
H A DvktApiObjectManagementTests.cpp1887 const VkPipelineInputAssemblyStateCreateInfo inputAssemblyState = in createMultiple() local
1983 &inputAssemblyState, in createMultiple()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shader_object/
H A DvktShaderObjectMiscTests.cpp1268 const vk::VkPipelineInputAssemblyStateCreateInfo inputAssemblyState =
1438 pipeline = vk::makeGraphicsPipeline(vk, device, *pipelineLayout, *vertShaderModule, *tescShaderModule, *teseShaderModule, *geomShaderModule, *fragShaderModule, VK_NULL_HANDLE, 0u, &vertexInputState, &inputAssemblyState, &tessellationState, &viewportState, &rasterizationState, &multisampleState, &depthStencilState, &colorBlendState, &dynamicState, &pipelineRenderingCreateInfo);
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/api/
H A DvktApiObjectManagementTests.cpp1887 const VkPipelineInputAssemblyStateCreateInfo inputAssemblyState = in createMultiple() local
1983 &inputAssemblyState, in createMultiple()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/renderpass/
H A DvktRenderPassTests.cpp1949 const VkPipelineInputAssemblyStateCreateInfo inputAssemblyState = in createSubpassPipeline() local
2120 &inputAssemblyState, // const VkPipelineInputAssemblyStateCreateInfo* pInputAssemblyState; in createSubpassPipeline()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/renderpass/
H A DvktRenderPassTests.cpp1937 const VkPipelineInputAssemblyStateCreateInfo inputAssemblyState = in createSubpassPipeline() local
2106 &inputAssemblyState, // const VkPipelineInputAssemblyStateCreateInfo* pInputAssemblyState; in createSubpassPipeline()

Completed in 84 milliseconds