Lines Matching refs:commandPoolMap

130     unordered_map<VkCommandPool, CMD_POOL_INFO> commandPoolMap;  member
304 my_data->commandPoolMap[commandPool].commandBuffers.remove(cb); in delete_cmd_buf_info()
4351 auto pool_data = my_data->commandPoolMap.find(pCB->createInfo.commandPool); in addCmd()
4352 if (pool_data != my_data->commandPoolMap.end()) { in addCmd()
6070 dev_data->commandPoolMap[commandPool].commandBuffers.remove(pCommandBuffers[i]); in vkFreeCommandBuffers()
6090 dev_data->commandPoolMap[*pCommandPool].createFlags = pCreateInfo->flags; in vkCreateCommandPool()
6091 dev_data->commandPoolMap[*pCommandPool].queueFamilyIndex = pCreateInfo->queueFamilyIndex; in vkCreateCommandPool()
6112 auto pool_data = dev_data->commandPoolMap.find(commandPool); in validateCommandBuffersNotInUse()
6113 if (pool_data != dev_data->commandPoolMap.end()) { in validateCommandBuffersNotInUse()
6137 for (auto it = dev_data->commandPoolMap[commandPool].commandBuffers.begin(); in vkDestroyCommandPool()
6138 it != dev_data->commandPoolMap[commandPool].commandBuffers.end(); it++) { in vkDestroyCommandPool()
6151 if (dev_data->commandPoolMap.find(commandPool) != dev_data->commandPoolMap.end()) { in vkDestroyCommandPool()
6152 for (auto poolCb = dev_data->commandPoolMap[commandPool].commandBuffers.begin(); in vkDestroyCommandPool()
6153 poolCb != dev_data->commandPoolMap[commandPool].commandBuffers.end();) { in vkDestroyCommandPool()
6157 poolCb = dev_data->commandPoolMap[commandPool].commandBuffers.erase( in vkDestroyCommandPool()
6161 dev_data->commandPoolMap.erase(commandPool); in vkDestroyCommandPool()
6172 auto item = dev_data->commandPoolMap[commandPool].commandBuffers.begin(); in vkDestroyCommandPool()
6174 while (item != dev_data->commandPoolMap[commandPool].commandBuffers.end()) { in vkDestroyCommandPool()
6178 dev_data->commandPoolMap.erase(commandPool); in vkDestroyCommandPool()
6192 auto it = dev_data->commandPoolMap[commandPool].commandBuffers.begin(); in vkResetCommandPool()
6194 while (it != dev_data->commandPoolMap[commandPool].commandBuffers.end()) { in vkResetCommandPool()
6219 auto it = dev_data->commandPoolMap[commandPool].commandBuffers.begin(); in vkResetCommandPool()
6220 while (it != dev_data->commandPoolMap[commandPool].commandBuffers.end()) { in vkResetCommandPool()
6888 auto const &cp_it = dev_data->commandPoolMap.find(pCreateInfo->commandPool); in vkAllocateCommandBuffers()
6889 if (cp_it != dev_data->commandPoolMap.end()) { in vkAllocateCommandBuffers()
7015 …if (!(VK_COMMAND_POOL_CREATE_RESET_COMMAND_BUFFER_BIT & dev_data->commandPoolMap[cmdPool].createFl… in vkBeginCommandBuffer()
7106 …if (!(VK_COMMAND_POOL_CREATE_RESET_COMMAND_BUFFER_BIT & dev_data->commandPoolMap[cmdPool].createFl… in vkResetCommandBuffer()