Home
last modified time | relevance | path

Searched refs:typeCounts (Results 1 – 6 of 6) sorted by relevance

/external/skia/src/gpu/vk/
DGrVkDescriptorPool.cpp14 GrVkDescriptorPool::GrVkDescriptorPool(const GrVkGpu* gpu, const DescriptorTypeCounts& typeCounts) in GrVkDescriptorPool() argument
16 , fTypeCounts(typeCounts) { in GrVkDescriptorPool()
44 bool GrVkDescriptorPool::isCompatible(const DescriptorTypeCounts& typeCounts) const { in isCompatible()
45 return fTypeCounts.isSuperSet(typeCounts); in isCompatible()
DGrVkDescriptorPool.h36 explicit GrVkDescriptorPool(const GrVkGpu* gpu, const DescriptorTypeCounts& typeCounts);
44 bool isCompatible(const DescriptorTypeCounts& typeCounts) const;
DGrVkResourceProvider.cpp61 const GrVkDescriptorPool::DescriptorTypeCounts& typeCounts) { in findOrCreateCompatibleDescriptorPool() argument
62 return new GrVkDescriptorPool(fGpu, typeCounts); in findOrCreateCompatibleDescriptorPool()
DGrVkProgramBuilder.cpp289 GrVkDescriptorPool::DescriptorTypeCounts typeCounts; in finalize() local
290 typeCounts.setTypeCount(VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER, 2); in finalize()
292 typeCounts.setTypeCount(VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER, (uint8_t)numSamplers); in finalize()
294 fGpu->resourceProvider().findOrCreateCompatibleDescriptorPool(typeCounts); in finalize()
DGrVkResourceProvider.h53 const GrVkDescriptorPool::DescriptorTypeCounts& typeCounts);
/external/deqp/external/vulkancts/modules/vulkan/api/
DvktApiObjectManagementTests.cpp1848 vector<VkDescriptorPoolSize> typeCounts; in computePoolSizes() local
1863 typeCounts.push_back(makeDescriptorPoolSize((VkDescriptorType)type, countByType[type])); in computePoolSizes()
1866 return typeCounts; in computePoolSizes()