mirror of
https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git
synced 2025-05-14 16:58:34 +00:00
Fixes in comments
Regenerated documentation.
This commit is contained in:
parent
895b080a3c
commit
d2f0313d20
183 changed files with 3052 additions and 3879 deletions
|
@ -2228,7 +2228,6 @@ the containers.
|
|||
#define VMA_USE_STL_SHARED_MUTEX 1
|
||||
// Visual studio defines __cplusplus properly only when passed additional parameter: /Zc:__cplusplus
|
||||
// Otherwise it is always 199711L, despite shared_mutex works since Visual Studio 2015 Update 2.
|
||||
// See: https://blogs.msdn.microsoft.com/vcblog/2018/04/09/msvc-now-correctly-reports-__cplusplus/
|
||||
#elif defined(_MSC_FULL_VER) && _MSC_FULL_VER >= 190023918 && __cplusplus == 199711L && _MSVC_LANG >= 201703L
|
||||
#define VMA_USE_STL_SHARED_MUTEX 1
|
||||
#else
|
||||
|
@ -18712,8 +18711,8 @@ The advantage of buddy allocation algorithm over default algorithm is faster
|
|||
allocation and deallocation, as well as smaller external fragmentation. The
|
||||
disadvantage is more wasted space (internal fragmentation).
|
||||
|
||||
For more information, please read ["Buddy memory allocation" on Wikipedia](https://en.wikipedia.org/wiki/Buddy_memory_allocation)
|
||||
or other sources that describe this concept in general.
|
||||
For more information, please search the Internet for "Buddy memory allocation" -
|
||||
sources that describe this concept in general.
|
||||
|
||||
To use buddy allocation algorithm with a custom pool, add flag
|
||||
#VMA_POOL_CREATE_BUDDY_ALGORITHM_BIT to VmaPoolCreateInfo::flags while creating
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue