Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/dawn/src/tests/end2end/
DEntryPointTests.cpp74 wgpu::PipelineLayoutDescriptor pipelineLayoutDesc = {}; in TEST_P() local
75 pipelineLayoutDesc.bindGroupLayoutCount = 1; in TEST_P()
76 pipelineLayoutDesc.bindGroupLayouts = &bindGroupLayout; in TEST_P()
78 wgpu::PipelineLayout pipelineLayout = device.CreatePipelineLayout(&pipelineLayoutDesc); in TEST_P()
DCreatePipelineAsyncTests.cpp535 wgpu::PipelineLayoutDescriptor pipelineLayoutDesc = {}; in TEST_P() local
536 pipelineLayoutDesc.bindGroupLayoutCount = 1; in TEST_P()
537 pipelineLayoutDesc.bindGroupLayouts = &bindGroupLayout; in TEST_P()
539 wgpu::PipelineLayout pipelineLayout = device.CreatePipelineLayout(&pipelineLayoutDesc); in TEST_P()
/third_party/skia/third_party/externals/dawn/src/tests/perf_tests/
DDrawCallPerf.cpp360 wgpu::PipelineLayoutDescriptor pipelineLayoutDesc = {}; in SetUp() local
361 pipelineLayoutDesc.bindGroupLayouts = &mUniformBindGroupLayout; in SetUp()
362 pipelineLayoutDesc.bindGroupLayoutCount = 1; in SetUp()
363 wgpu::PipelineLayout pipelineLayout = device.CreatePipelineLayout(&pipelineLayoutDesc); in SetUp()
389 pipelineLayoutDesc.bindGroupLayouts = bindGroupLayouts, in SetUp()
390 pipelineLayoutDesc.bindGroupLayoutCount = 2; in SetUp()
391 wgpu::PipelineLayout pipelineLayout = device.CreatePipelineLayout(&pipelineLayoutDesc); in SetUp()
/third_party/skia/src/gpu/dawn/
DGrDawnProgramBuilder.cpp320 wgpu::PipelineLayoutDescriptor pipelineLayoutDesc; in Build() local
321 pipelineLayoutDesc.bindGroupLayoutCount = result->fBindGroupLayouts.size(); in Build()
322 pipelineLayoutDesc.bindGroupLayouts = result->fBindGroupLayouts.data(); in Build()
323 auto pipelineLayout = gpu->device().CreatePipelineLayout(&pipelineLayoutDesc); in Build()
/third_party/skia/third_party/externals/dawn/src/tests/unittests/validation/
DGetBindGroupLayoutValidationTests.cpp1037 wgpu::PipelineLayoutDescriptor pipelineLayoutDesc = {}; in TEST_F() local
1038 pipelineLayoutDesc.bindGroupLayoutCount = 1; in TEST_F()
1039 pipelineLayoutDesc.bindGroupLayouts = &bindGroupLayout; in TEST_F()
1041 wgpu::PipelineLayout pipelineLayout = device.CreatePipelineLayout(&pipelineLayoutDesc); in TEST_F()
DRenderBundleValidationTests.cpp63 wgpu::PipelineLayoutDescriptor pipelineLayoutDesc = {}; in SetUp() local
64 pipelineLayoutDesc.bindGroupLayoutCount = 2; in SetUp()
65 pipelineLayoutDesc.bindGroupLayouts = bgls; in SetUp()
67 pipelineLayout = device.CreatePipelineLayout(&pipelineLayoutDesc); in SetUp()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
DProgramExecutableVk.cpp1103 vk::PipelineLayoutDesc pipelineLayoutDesc; in createPipelineLayout() local
1104 pipelineLayoutDesc.updateDescriptorSetLayout(DescriptorSetIndex::UniformsAndXfb, in createPipelineLayout()
1106 pipelineLayoutDesc.updateDescriptorSetLayout(DescriptorSetIndex::ShaderResource, in createPipelineLayout()
1108 pipelineLayoutDesc.updateDescriptorSetLayout(DescriptorSetIndex::Texture, texturesSetDesc); in createPipelineLayout()
1109 pipelineLayoutDesc.updateDescriptorSetLayout(DescriptorSetIndex::Internal, in createPipelineLayout()
1113 contextVk, pipelineLayoutDesc, mDescriptorSetLayouts, &mPipelineLayout)); in createPipelineLayout()
DUtilsVk.cpp1157 vk::PipelineLayoutDesc pipelineLayoutDesc; in ensureResourcesInitialized() local
1159 pipelineLayoutDesc.updateDescriptorSetLayout(DescriptorSetIndex::Internal, descriptorSetDesc); in ensureResourcesInitialized()
1162 pipelineLayoutDesc.updatePushConstantRange(pushConstantsShaderStage, 0, in ensureResourcesInitialized()
1166 ANGLE_TRY(contextVk->getPipelineLayoutCache().getPipelineLayout(contextVk, pipelineLayoutDesc, in ensureResourcesInitialized()