Lines Matching refs:pci
332 VkGraphicsPipelineCreateInfo pci = {0};
333 pci.sType = VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO;
334 pci.layout = prog->base.layout;
336 pci.renderPass = state->render_pass->render_pass;
338 pci.pNext = &state->rendering_info;
340 pci.pVertexInputState = &vertex_input_state;
341 pci.pInputAssemblyState = &primitive_state;
342 pci.pRasterizationState = &rast_state;
343 pci.pColorBlendState = &blend_state;
344 pci.pMultisampleState = &ms_state;
345 pci.pViewportState = &viewport_state;
346 pci.pDepthStencilState = &depth_stencil_state;
347 pci.pDynamicState = &pipelineDynamicStateCreateInfo;
354 pci.pTessellationState = &tci;
375 pci.pStages = shader_stages;
376 pci.stageCount = num_stages;
380 1, &pci, NULL, &pipeline);
392 VkComputePipelineCreateInfo pci = {0};
393 pci.sType = VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO;
394 pci.layout = comp->base.layout;
418 pci.stage = stage;
422 1, &pci, NULL, &pipeline);