Home
last modified time | relevance | path

Searched refs:stageInfo (Results 1 – 12 of 12) sorted by relevance

/external/skia/src/gpu/vk/
DGrVkUtil.cpp93 VkPipelineShaderStageCreateInfo* stageInfo, in GrCompileVkShaderModule() argument
113 return GrInstallVkShaderModule(gpu, *outSPIRV, stage, shaderModule, stageInfo); in GrCompileVkShaderModule()
120 VkPipelineShaderStageCreateInfo* stageInfo) { in GrInstallVkShaderModule() argument
137 memset(stageInfo, 0, sizeof(VkPipelineShaderStageCreateInfo)); in GrInstallVkShaderModule()
138 stageInfo->sType = VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO; in GrInstallVkShaderModule()
139 stageInfo->pNext = nullptr; in GrInstallVkShaderModule()
140 stageInfo->flags = 0; in GrInstallVkShaderModule()
141 stageInfo->stage = stage; in GrInstallVkShaderModule()
142 stageInfo->module = *shaderModule; in GrInstallVkShaderModule()
143 stageInfo->pName = "main"; in GrInstallVkShaderModule()
[all …]
DGrVkPipelineStateBuilder.h63 VkPipelineShaderStageCreateInfo* stageInfo,
71 VkPipelineShaderStageCreateInfo* stageInfo,
DGrVkUtil.h133 VkPipelineShaderStageCreateInfo* stageInfo,
142 VkPipelineShaderStageCreateInfo* stageInfo);
DGrVkPipelineStateBuilder.cpp77 VkPipelineShaderStageCreateInfo* stageInfo, in createVkShaderModule() argument
82 stageInfo, settings, outSPIRV, outInputs)) { in createVkShaderModule()
94 VkPipelineShaderStageCreateInfo* stageInfo, in installVkShaderModule() argument
97 if (!GrInstallVkShaderModule(fGpu, spirv, stage, shaderModule, stageInfo)) { in installVkShaderModule()
/external/skqp/src/gpu/vk/
DGrVkUtil.cpp198 VkPipelineShaderStageCreateInfo* stageInfo, in GrCompileVkShaderModule() argument
216 return GrInstallVkShaderModule(gpu, *outSPIRV, stage, shaderModule, stageInfo); in GrCompileVkShaderModule()
223 VkPipelineShaderStageCreateInfo* stageInfo) { in GrInstallVkShaderModule() argument
240 memset(stageInfo, 0, sizeof(VkPipelineShaderStageCreateInfo)); in GrInstallVkShaderModule()
241 stageInfo->sType = VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO; in GrInstallVkShaderModule()
242 stageInfo->pNext = nullptr; in GrInstallVkShaderModule()
243 stageInfo->flags = 0; in GrInstallVkShaderModule()
244 stageInfo->stage = stage; in GrInstallVkShaderModule()
245 stageInfo->module = *shaderModule; in GrInstallVkShaderModule()
246 stageInfo->pName = "main"; in GrInstallVkShaderModule()
[all …]
DGrVkUtil.h51 VkPipelineShaderStageCreateInfo* stageInfo,
60 VkPipelineShaderStageCreateInfo* stageInfo);
DGrVkPipelineStateBuilder.h110 VkPipelineShaderStageCreateInfo* stageInfo,
119 VkPipelineShaderStageCreateInfo* stageInfo,
DGrVkPipelineStateBuilder.cpp69 VkPipelineShaderStageCreateInfo* stageInfo, in createVkShaderModule() argument
83 stageInfo, settings, outSPIRV, outInputs)) { in createVkShaderModule()
99 VkPipelineShaderStageCreateInfo* stageInfo, in installVkShaderModule() argument
102 if (!GrInstallVkShaderModule(fGpu, spirv, stage, shaderModule, stageInfo)) { in installVkShaderModule()
/external/llvm-project/mlir/tools/mlir-vulkan-runner/
DVulkanRuntime.cpp648 VkPipelineShaderStageCreateInfo stageInfo = {}; in createComputePipeline() local
649 stageInfo.sType = VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO; in createComputePipeline()
650 stageInfo.pNext = nullptr; in createComputePipeline()
651 stageInfo.flags = 0; in createComputePipeline()
652 stageInfo.stage = VK_SHADER_STAGE_COMPUTE_BIT; in createComputePipeline()
653 stageInfo.module = shaderModule; in createComputePipeline()
655 stageInfo.pName = entryPoint; in createComputePipeline()
656 stageInfo.pSpecializationInfo = 0; in createComputePipeline()
663 computePipelineCreateInfo.stage = stageInfo; in createComputePipeline()
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineCreationCacheControlTests.cpp515 const auto stageInfo = VkPipelineShaderStageCreateInfo{ in createShaderStages()
525 output.push_back(stageInfo); in createShaderStages()
/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
DvktSpvAsmGraphicsShaderTestUtil.cpp3871 …haderStageCreateInfo>::iterator stageInfo = shaderStageParams.begin(); stageInfo != shaderStagePar… in runAndVerifyDefaultPipeline() local
3873 …const StageToSpecConstantMap::const_iterator stageIt = instance.specConstants.find(stageInfo->stag… in runAndVerifyDefaultPipeline()
3904 stageInfo->pSpecializationInfo = &specializationInfos.back(); in runAndVerifyDefaultPipeline()
/external/deqp/external/vulkancts/modules/vulkan/ray_tracing/
DvktRayTracingBarrierTests.cpp1008 const VkPipelineShaderStageCreateInfo stageInfo = in createComputePipeline() local
1024 stageInfo, // VkPipelineShaderStageCreateInfo stage; in createComputePipeline()