/external/mesa3d/src/intel/vulkan/ |
D | anv_pipeline.c | 1230 switch (info->pStages[i].stage) { in anv_pipeline_validate_create_info() 1310 const VkPipelineShaderStageCreateInfo *pStages[MESA_SHADER_STAGES] = {}; in anv_pipeline_init() local 1313 gl_shader_stage stage = ffs(pCreateInfo->pStages[i].stage) - 1; in anv_pipeline_init() 1314 pStages[stage] = &pCreateInfo->pStages[i]; in anv_pipeline_init() 1315 modules[stage] = anv_shader_module_from_handle(pStages[stage]->module); in anv_pipeline_init() 1321 pStages[MESA_SHADER_VERTEX]->pName, in anv_pipeline_init() 1322 pStages[MESA_SHADER_VERTEX]->pSpecializationInfo); in anv_pipeline_init() 1330 pStages[MESA_SHADER_TESS_CTRL]->pName, in anv_pipeline_init() 1331 pStages[MESA_SHADER_TESS_CTRL]->pSpecializationInfo, in anv_pipeline_init() 1333 pStages[MESA_SHADER_TESS_EVAL]->pName, in anv_pipeline_init() [all …]
|
/external/swiftshader/src/Vulkan/ |
D | VkPipeline.cpp | 204 const VkPipelineShaderStageCreateInfo& vertexStage = pCreateInfo->pStages[0]; in GraphicsPipeline() 214 const VkPipelineShaderStageCreateInfo& fragmentStage = pCreateInfo->pStages[1]; in GraphicsPipeline() 385 …for (auto pStage = pCreateInfo->pStages; pStage != pCreateInfo->pStages + pCreateInfo->stageCount;… in compileShaders()
|
/external/mesa3d/src/amd/vulkan/ |
D | radv_pipeline.c | 1861 const VkPipelineShaderStageCreateInfo **pStages) in radv_create_shaders() argument 1872 if (pStages[i]) { in radv_create_shaders() 1873 modules[i] = radv_shader_module_from_handle(pStages[i]->module); in radv_create_shaders() 1881 radv_hash_shaders(hash, pStages, pipeline->layout, &key, get_hash_flags(device)); in radv_create_shaders() 1912 if (!pStages[i]) in radv_create_shaders() 1921 const VkPipelineShaderStageCreateInfo *stage = pStages[i]; in radv_create_shaders() 2451 const VkPipelineShaderStageCreateInfo *pStages[MESA_SHADER_STAGES] = { 0, }; in radv_pipeline_init() local 2453 gl_shader_stage stage = ffs(pCreateInfo->pStages[i].stage) - 1; in radv_pipeline_init() 2454 pStages[stage] = &pCreateInfo->pStages[i]; in radv_pipeline_init() 2459 pStages); in radv_pipeline_init() [all …]
|
D | radv_meta_fast_clear.c | 320 .pStages = stages, in create_pipeline() 366 .pStages = stages, in create_pipeline() 412 .pStages = stages, in create_pipeline()
|
D | radv_meta_blit.c | 784 .pStages = pipeline_shader_stages, in radv_device_init_meta_blit_color() 943 .pStages = pipeline_shader_stages, in radv_device_init_meta_blit_depth() 1104 .pStages = pipeline_shader_stages, in radv_device_init_meta_blit_stencil()
|
D | radv_meta_blit2d.c | 747 .pStages = pipeline_shader_stages, in blit2d_init_color_pipeline() 909 .pStages = pipeline_shader_stages, in blit2d_init_depth_only_pipeline() 1071 .pStages = pipeline_shader_stages, in blit2d_init_stencil_only_pipeline()
|
D | radv_meta_decompress.c | 120 .pStages = (VkPipelineShaderStageCreateInfo[]) { in create_pipeline()
|
D | radv_meta_resolve.c | 149 .pStages = (VkPipelineShaderStageCreateInfo[]) { in create_pipeline()
|
D | radv_meta_resolve_fs.c | 256 .pStages = pipeline_shader_stages, in create_resolve_pipeline()
|
D | radv_meta_clear.c | 119 .pStages = (VkPipelineShaderStageCreateInfo[]) { in create_pipeline()
|
/external/vulkan-validation-layers/layers/ |
D | gpu_validation.cpp | 541 … const shader_module *shader = GetShaderModuleState(pCreateInfos[pipeline].pStages[stage].module); in GpuPreCallRecordCreateGraphicsPipelines() 549 new_pipeline_create_infos[pipeline].pStages[stage].module = shader_module; in GpuPreCallRecordCreateGraphicsPipelines() 552 HandleToUint64(pCreateInfos[pipeline].pStages[stage].module), in GpuPreCallRecordCreateGraphicsPipelines() 577 …GetDispatchTable()->DestroyShaderModule(GetDevice(), pCreateInfos->pStages[stage].module, pAllocat… in GpuPostCallRecordCreateGraphicsPipelines() 579 …auto shader_state = GetShaderModuleState(pipeline_state->graphicsPipelineCI.pStages[stage].module); in GpuPostCallRecordCreateGraphicsPipelines() 597 pipeline_state->graphicsPipelineCI.pStages[stage].module; in GpuPostCallRecordCreateGraphicsPipelines()
|
D | core_validation_types.h | 731 const VkPipelineShaderStageCreateInfo *pPSSCI = &pCreateInfo->pStages[i]; 786 switch (raytracingPipelineCI.pStages->stage) {
|
D | parameter_validation_utils.cpp | 1018 if (pCreateInfos[i].pStages != nullptr) { in manual_PreCallValidateCreateGraphicsPipelines() 1023 … if (pCreateInfos[i].pStages[stage_index].stage == VK_SHADER_STAGE_TESSELLATION_CONTROL_BIT) { in manual_PreCallValidateCreateGraphicsPipelines() 1025 …} else if (pCreateInfos[i].pStages[stage_index].stage == VK_SHADER_STAGE_TESSELLATION_EVALUATION_B… in manual_PreCallValidateCreateGraphicsPipelines() 1718 … "VUID-VkGraphicsPipelineCreateInfo-pStages-parameter", pCreateInfos[i].pStages[j].pName); in manual_PreCallValidateCreateGraphicsPipelines()
|
D | shader_validation.cpp | 2163 stage_mask |= pCreateInfo->pStages[i].stage; in DetermineFinalGeomStage() 2196 auto pStage = &pCreateInfo->pStages[i]; in ValidateAndCapturePipelineShaderState() 2259 …return ValidatePipelineShaderStage(dev_data, pCreateInfo->pStages, pipeline, &module, &entrypoint,… in ValidateRayTracingPipelineNV()
|
/external/skia/src/gpu/vk/ |
D | GrVkCopyPipeline.cpp | 164 pipelineCreateInfo.pStages = shaderStageInfo; in Create()
|
D | GrVkPipeline.cpp | 548 pipelineCreateInfo.pStages = shaderStageInfo; in Create()
|
/external/skqp/src/gpu/vk/ |
D | GrVkCopyPipeline.cpp | 160 pipelineCreateInfo.pStages = shaderStageInfo; in Create()
|
D | GrVkPipeline.cpp | 544 pipelineCreateInfo.pStages = shaderStageInfo; in Create()
|
/external/deqp/external/vulkancts/modules/vulkan/sparse_resources/ |
D | vktSparseResourcesBufferTests.cpp | 291 const VkPipelineShaderStageCreateInfo* pStages) in makeGraphicsPipeline() argument 428 pStages, // const VkPipelineShaderStageCreateInfo* pStages; in makeGraphicsPipeline()
|
/external/deqp/external/vulkancts/modules/vulkan/synchronization/ |
D | vktSynchronizationInternallySynchronizedObjectsTests.cpp | 948 graphicsPipelineParams.pStages = &shaderStageInfos[shaderNdx]; in addPipelineInfo()
|
D | vktSynchronizationSmokeTests.cpp | 833 pipelineState.pStages = &shaderStageParams[0]; in generateWork()
|
/external/deqp/external/vulkancts/modules/vulkan/draw/ |
D | vktDrawCreateInfoUtil.cpp | 1088 pStages = &m_shaders[0]; in addShader()
|
/external/vulkan-validation-layers/tests/ |
D | vkrenderframework.cpp | 1545 gp_ci->pStages = m_shaderStages.size() ? m_shaderStages.data() : nullptr; in InitGraphicsPipelineCreateInfo()
|
/external/deqp/external/vulkancts/framework/vulkan/ |
D | vkStructTypes.inl | 773 const VkPipelineShaderStageCreateInfo* pStages; member
|
/external/swiftshader/include/vulkan/ |
D | vulkan_core.h | 2469 const VkPipelineShaderStageCreateInfo* pStages; member 8214 const VkPipelineShaderStageCreateInfo* pStages; member
|