Fixed documentation of the new function vmaCreateBufferWithAlignment

This commit is contained in:
Adam Sawicki 2021-07-07 15:34:10 +02:00
parent f8e37ef2a2
commit 55868965ae
39 changed files with 15732 additions and 15544 deletions

View file

@ -3987,7 +3987,11 @@ VMA_CALL_PRE VkResult VMA_CALL_POST vmaCreateBuffer(
VmaAllocation VMA_NULLABLE * VMA_NOT_NULL pAllocation,
VmaAllocationInfo* VMA_NULLABLE pAllocationInfo);
/** \brief TODO
/** \brief Creates a buffer with additional minimum alignment.
Similar to vmaCreateBuffer() but provides additional parameter `minAlignment` which allows to specify custom,
minimum alignment to be used when placing the buffer inside a larger memory block, which may be needed e.g.
for interop with OpenGL.
*/
VMA_CALL_PRE VkResult VMA_CALL_POST vmaCreateBufferWithAlignment(
VmaAllocator VMA_NOT_NULL allocator,