| 16178 | } |
| 16179 | |
| 16180 | VMA_CALL_PRE VkResult VMA_CALL_POST vmaCreatePool( |
| 16181 | VmaAllocator allocator, |
| 16182 | const VmaPoolCreateInfo* pCreateInfo, |
| 16183 | VmaPool* pPool) |
| 16184 | { |
| 16185 | VMA_ASSERT(allocator && pCreateInfo && pPool); |
| 16186 | |
| 16187 | VMA_DEBUG_LOG("vmaCreatePool"); |
| 16188 | |
| 16189 | VMA_DEBUG_GLOBAL_MUTEX_LOCK |
| 16190 | |
| 16191 | return allocator->CreatePool(pCreateInfo, pPool); |
| 16192 | } |
| 16193 | |
| 16194 | VMA_CALL_PRE void VMA_CALL_POST vmaDestroyPool( |
| 16195 | VmaAllocator allocator, |
no outgoing calls