Searched refs:poolInfo (Results 1 – 7 of 7) sorted by relevance
25 VkCommandPoolCreateInfo poolInfo = {}; in InitializeCommandPool() local26 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()
339 vk::DescriptorPoolCreateInfo poolInfo; in createCommandBuffers() local340 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()
411 const UDataInfo *poolInfo=nativePool.getDataInfo(); in ures_enumDependencies() local412 if(poolInfo->formatVersion[0]<=1) { in ures_enumDependencies()
410 const UDataInfo *poolInfo=nativePool.getDataInfo(); in ures_enumDependencies() local411 if(poolInfo->formatVersion[0]<=1) { in ures_enumDependencies()
841 VkCommandPoolCreateInfo poolInfo = {}; in releaseToCommandBatch() local842 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()