mirror of
https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git
synced 2025-05-14 16:58:34 +00:00
fix typo in specification of VmaAlignDown
This commit is contained in:
parent
d2767622a6
commit
19dbbe92c0
1 changed files with 1 additions and 1 deletions
|
@ -3341,7 +3341,7 @@ static inline T VmaAlignUp(T val, T alignment)
|
|||
return (val + alignment - 1) & ~(alignment - 1);
|
||||
}
|
||||
|
||||
// Aligns given value down to nearest multiply of align value. For example: VmaAlignUp(11, 8) = 8.
|
||||
// Aligns given value down to nearest multiply of align value. For example: VmaAlignDown(11, 8) = 8.
|
||||
// Use types like uint32_t, uint64_t as T.
|
||||
template <typename T>
|
||||
static inline T VmaAlignDown(T val, T alignment)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue