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.cpp289 VkPipelineShaderStageCreateInfo stage_info[2] = {}; in create_pipeline() local
290 stage_info[0].sType = VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO; in create_pipeline()
291 stage_info[0].stage = VK_SHADER_STAGE_VERTEX_BIT; in create_pipeline()
292 stage_info[0].module = vs_; in create_pipeline()
293 stage_info[0].pName = "main"; in create_pipeline()
294 stage_info[1].sType = VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO; in create_pipeline()
295 stage_info[1].stage = VK_SHADER_STAGE_FRAGMENT_BIT; in create_pipeline()
296 stage_info[1].module = fs_; in create_pipeline()
297 stage_info[1].pName = "main"; in create_pipeline()
354 pipeline_info.pStages = stage_info; in create_pipeline()
/external/vulkan-validation-layers/tests/
Dvkrenderframework.h405 VkPipelineShaderStageCreateInfo stage_info;