Home
last modified time | relevance | path

Searched refs:pipelineLayoutDesc (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/external/skia/src/gpu/graphite/dawn/
H A DDawnComputePipeline.cpp166 wgpu::PipelineLayoutDescriptor pipelineLayoutDesc; in Make() local
168 pipelineLayoutDesc.label = step->name(); in Make()
170 pipelineLayoutDesc.bindGroupLayoutCount = 1; in Make()
171 pipelineLayoutDesc.bindGroupLayouts = &bindGroupLayout; in Make()
172 wgpu::PipelineLayout layout = device.CreatePipelineLayout(&pipelineLayoutDesc); in Make()
/aosp_15_r20/external/angle/src/libANGLE/renderer/vulkan/
H A DProgramExecutableVk.cpp1787 vk::PipelineLayoutDesc pipelineLayoutDesc; in createPipelineLayout() local
1788 pipelineLayoutDesc.updateDescriptorSetLayout(DescriptorSetIndex::UniformsAndXfb, in createPipelineLayout()
1790 pipelineLayoutDesc.updateDescriptorSetLayout(DescriptorSetIndex::ShaderResource, in createPipelineLayout()
1792 pipelineLayoutDesc.updateDescriptorSetLayout(DescriptorSetIndex::Texture, mTextureSetDesc); in createPipelineLayout()
1801 pipelineLayoutDesc.updatePushConstantRange(pushConstantShaderStageFlags, 0, pushConstantSize); in createPipelineLayout()
1803 ANGLE_TRY(pipelineLayoutCache->getPipelineLayout(context, pipelineLayoutDesc, in createPipelineLayout()
H A DUtilsVk.cpp1511 vk::PipelineLayoutDesc pipelineLayoutDesc; in ensureResourcesInitialized() local
1513 pipelineLayoutDesc.updateDescriptorSetLayout(DescriptorSetIndex::Internal, descriptorSetDesc); in ensureResourcesInitialized()
1516 pipelineLayoutDesc.updatePushConstantRange(descStages, 0, in ensureResourcesInitialized()
1520 ANGLE_TRY(contextVk->getPipelineLayoutCache().getPipelineLayout(contextVk, pipelineLayoutDesc, in ensureResourcesInitialized()
1671 vk::PipelineLayoutDesc pipelineLayoutDesc; in ensureImageCopyResourcesInitializedWithSampler() local
1672 pipelineLayoutDesc.updateDescriptorSetLayout(DescriptorSetIndex::Internal, descriptorSetDesc); in ensureImageCopyResourcesInitializedWithSampler()
1673 pipelineLayoutDesc.updatePushConstantRange(VK_SHADER_STAGE_FRAGMENT_BIT, 0, in ensureImageCopyResourcesInitializedWithSampler()
1677 contextVk, pipelineLayoutDesc, mImageCopyWithSamplerDescriptorSetLayouts[samplerDesc], in ensureImageCopyResourcesInitializedWithSampler()