| 16259 | } |
| 16260 | |
| 16261 | VMA_CALL_PRE void VMA_CALL_POST vmaSetPoolName( |
| 16262 | VmaAllocator allocator, |
| 16263 | VmaPool pool, |
| 16264 | const char* pName) |
| 16265 | { |
| 16266 | VMA_ASSERT(allocator && pool); |
| 16267 | |
| 16268 | VMA_DEBUG_LOG("vmaSetPoolName"); |
| 16269 | |
| 16270 | VMA_DEBUG_GLOBAL_MUTEX_LOCK |
| 16271 | |
| 16272 | pool->SetName(pName); |
| 16273 | } |
| 16274 | |
| 16275 | VMA_CALL_PRE VkResult VMA_CALL_POST vmaAllocateMemory( |
| 16276 | VmaAllocator allocator, |
no outgoing calls