Home
last modified time | relevance | path

Searched refs:poolInfo (Results 1 – 7 of 7) sorted by relevance

/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
DVulkanSecondaryCommandBuffer.cpp25 VkCommandPoolCreateInfo poolInfo = {}; in InitializeCommandPool() local
26 poolInfo.sType = VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO; in InitializeCommandPool()
27 poolInfo.flags = VK_COMMAND_POOL_CREATE_TRANSIENT_BIT; in InitializeCommandPool()
28 poolInfo.queueFamilyIndex = queueFamilyIndex; in InitializeCommandPool()
31 poolInfo.flags |= VK_COMMAND_POOL_CREATE_PROTECTED_BIT; in InitializeCommandPool()
33 ANGLE_VK_TRY(context, pool->init(context->getDevice(), poolInfo)); in InitializeCommandPool()
/third_party/skia/third_party/externals/swiftshader/tests/VulkanWrapper/
DDrawTester.cpp339 vk::DescriptorPoolCreateInfo poolInfo; in createCommandBuffers() local
340 poolInfo.poolSizeCount = static_cast<uint32_t>(poolSizes.size()); in createCommandBuffers()
341 poolInfo.pPoolSizes = poolSizes.data(); in createCommandBuffers()
342 poolInfo.maxSets = 1; in createCommandBuffers()
344 descriptorPool = device.createDescriptorPool(poolInfo); in createCommandBuffers()
/third_party/node/deps/icu-small/source/tools/toolutil/
Dpkgitems.cpp411 const UDataInfo *poolInfo=nativePool.getDataInfo(); in ures_enumDependencies() local
412 if(poolInfo->formatVersion[0]<=1) { in ures_enumDependencies()
/third_party/flutter/skia/third_party/externals/icu/source/tools/toolutil/
Dpkgitems.cpp410 const UDataInfo *poolInfo=nativePool.getDataInfo(); in ures_enumDependencies() local
411 if(poolInfo->formatVersion[0]<=1) { in ures_enumDependencies()
/third_party/skia/third_party/externals/icu/source/tools/toolutil/
Dpkgitems.cpp411 const UDataInfo *poolInfo=nativePool.getDataInfo(); in ures_enumDependencies() local
412 if(poolInfo->formatVersion[0]<=1) { in ures_enumDependencies()
/third_party/icu/icu4c/source/tools/toolutil/
Dpkgitems.cpp411 const UDataInfo *poolInfo=nativePool.getDataInfo(); in ures_enumDependencies() local
412 if(poolInfo->formatVersion[0]<=1) { in ures_enumDependencies()
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
DContextVk.cpp841 VkCommandPoolCreateInfo poolInfo = {}; in releaseToCommandBatch() local
842 poolInfo.sType = VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO; in releaseToCommandBatch()
843 poolInfo.flags = VK_COMMAND_POOL_CREATE_TRANSIENT_BIT; in releaseToCommandBatch()
844 poolInfo.queueFamilyIndex = getRenderer()->getQueueFamilyIndex(); in releaseToCommandBatch()
846 ANGLE_VK_TRY(this, mCommandPool.init(getDevice(), poolInfo)); in releaseToCommandBatch()