Home
last modified time | relevance | path

Searched refs:stage_info (Results 1 – 2 of 2) sorted by relevance

/external/vulkan-validation-layers/demos/smoke/
DSmoke.cpp284 VkPipelineShaderStageCreateInfo stage_info[2] = {}; in create_pipeline() local
285 stage_info[0].sType = VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO; in create_pipeline()
286 stage_info[0].stage = VK_SHADER_STAGE_VERTEX_BIT; in create_pipeline()
287 stage_info[0].module = vs_; in create_pipeline()
288 stage_info[0].pName = "main"; in create_pipeline()
289 stage_info[1].sType = VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO; in create_pipeline()
290 stage_info[1].stage = VK_SHADER_STAGE_FRAGMENT_BIT; in create_pipeline()
291 stage_info[1].module = fs_; in create_pipeline()
292 stage_info[1].pName = "main"; in create_pipeline()
349 pipeline_info.pStages = stage_info; in create_pipeline()
/external/vulkan-validation-layers/tests/
Dvkrenderframework.h380 VkPipelineShaderStageCreateInfo stage_info;