Home
last modified time | relevance | path

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

/external/vulkan-validation-layers/layers/
Dcore_validation.cpp6206 …alidateDestroyCommandPool(layer_data *dev_data, VkCommandPool pool, COMMAND_POOL_NODE **cp_state) { in PreCallValidateDestroyCommandPool() argument
6207 *cp_state = getCommandPoolNode(dev_data, pool); in PreCallValidateDestroyCommandPool()
6211 if (*cp_state) { in PreCallValidateDestroyCommandPool()
6213 …skip |= checkCommandBuffersInFlight(dev_data, *cp_state, "destroy command pool with", VALIDATION_E… in PreCallValidateDestroyCommandPool()
6218 …llRecordDestroyCommandPool(layer_data *dev_data, VkCommandPool pool, COMMAND_POOL_NODE *cp_state) { in PostCallRecordDestroyCommandPool() argument
6220 clearCommandBuffersInFlight(dev_data, cp_state); in PostCallRecordDestroyCommandPool()
6221 for (auto cb : cp_state->commandBuffers) { in PostCallRecordDestroyCommandPool()
6243 COMMAND_POOL_NODE *cp_state = nullptr; in DestroyCommandPool() local
6245 bool skip = PreCallValidateDestroyCommandPool(dev_data, commandPool, &cp_state); in DestroyCommandPool()
6250 PostCallRecordDestroyCommandPool(dev_data, commandPool, cp_state); in DestroyCommandPool()