| 16442 | } |
| 16443 | |
| 16444 | VMA_CALL_PRE VkResult VMA_CALL_POST vmaCreateAliasingBuffer( |
| 16445 | VmaAllocator VMA_NOT_NULL allocator, |
| 16446 | VmaAllocation VMA_NOT_NULL allocation, |
| 16447 | const VkBufferCreateInfo* VMA_NOT_NULL pBufferCreateInfo, |
| 16448 | VkBuffer VMA_NULLABLE_NON_DISPATCHABLE* VMA_NOT_NULL pBuffer) |
| 16449 | { |
| 16450 | return vmaCreateAliasingBuffer2(allocator, allocation, 0, pBufferCreateInfo, pBuffer); |
| 16451 | } |
| 16452 | |
| 16453 | VMA_CALL_PRE VkResult VMA_CALL_POST vmaCreateAliasingBuffer2( |
| 16454 | VmaAllocator VMA_NOT_NULL allocator, |
nothing calls this directly
no test coverage detected