| 16621 | } |
| 16622 | |
| 16623 | VMA_CALL_PRE VkResult VMA_CALL_POST vmaCreateAliasingImage( |
| 16624 | VmaAllocator VMA_NOT_NULL allocator, |
| 16625 | VmaAllocation VMA_NOT_NULL allocation, |
| 16626 | const VkImageCreateInfo* VMA_NOT_NULL pImageCreateInfo, |
| 16627 | VkImage VMA_NULLABLE_NON_DISPATCHABLE* VMA_NOT_NULL pImage) |
| 16628 | { |
| 16629 | return vmaCreateAliasingImage2(allocator, allocation, 0, pImageCreateInfo, pImage); |
| 16630 | } |
| 16631 | |
| 16632 | VMA_CALL_PRE VkResult VMA_CALL_POST vmaCreateAliasingImage2( |
| 16633 | VmaAllocator VMA_NOT_NULL allocator, |
nothing calls this directly
no test coverage detected