mirror of
https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator
synced 2024-11-05 12:20:07 +00:00
Version 1.0.1 release.
This commit is contained in:
parent
8bc1a7df83
commit
5197efc676
@ -1,3 +1,8 @@
|
|||||||
|
# 1.0.1 (2017-07-04)
|
||||||
|
|
||||||
|
- Fixes for Linux GCC compilation.
|
||||||
|
- Changed "CONFIGURATION SECTION" to contain #ifndef so you can define these macros before including this header, not necessarily change them in the file.
|
||||||
|
|
||||||
# 1.0.0 (2017-06-16)
|
# 1.0.0 (2017-06-16)
|
||||||
|
|
||||||
First public release.
|
First public release.
|
@ -62,7 +62,7 @@ $(function() {
|
|||||||
<div class="title">Vulkan Memory Allocator </div> </div>
|
<div class="title">Vulkan Memory Allocator </div> </div>
|
||||||
</div><!--header-->
|
</div><!--header-->
|
||||||
<div class="contents">
|
<div class="contents">
|
||||||
<div class="textblock"><p>Version 1.0.0 (2017-06-16)</p>
|
<div class="textblock"><p>Version 1.0.1 (2017-07-04)</p>
|
||||||
<p>Members grouped: see <a href="modules.html"><b>Modules</b></a>.</p>
|
<p>Members grouped: see <a href="modules.html"><b>Modules</b></a>.</p>
|
||||||
<p>All members: see <a class="el" href="vk__mem__alloc_8h.html">vk_mem_alloc.h</a>.</p>
|
<p>All members: see <a class="el" href="vk__mem__alloc_8h.html">vk_mem_alloc.h</a>.</p>
|
||||||
<h1><a class="anchor" id="problem"></a>
|
<h1><a class="anchor" id="problem"></a>
|
||||||
|
File diff suppressed because one or more lines are too long
@ -25,7 +25,7 @@
|
|||||||
|
|
||||||
/** \mainpage Vulkan Memory Allocator
|
/** \mainpage Vulkan Memory Allocator
|
||||||
|
|
||||||
Version 1.0.0 (2017-06-16)
|
Version 1.0.1 (2017-07-04)
|
||||||
|
|
||||||
Members grouped: see <a href="modules.html"><b>Modules</b></a>.
|
Members grouped: see <a href="modules.html"><b>Modules</b></a>.
|
||||||
|
|
||||||
@ -237,7 +237,9 @@ void vmaCalculateStats(
|
|||||||
VmaAllocator allocator,
|
VmaAllocator allocator,
|
||||||
VmaStats* pStats);
|
VmaStats* pStats);
|
||||||
|
|
||||||
#define VMA_STATS_STRING_ENABLED 1
|
#ifndef VMA_STATS_STRING_ENABLED
|
||||||
|
#define VMA_STATS_STRING_ENABLED 1
|
||||||
|
#endif
|
||||||
|
|
||||||
#if VMA_STATS_STRING_ENABLED
|
#if VMA_STATS_STRING_ENABLED
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user