Version 1.0.1 release.

This commit is contained in:
Adam Sawicki 2017-07-04 15:28:48 +02:00
parent 8bc1a7df83
commit 5197efc676
4 changed files with 25 additions and 18 deletions

View File

@ -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)
First public release.

View File

@ -62,7 +62,7 @@ $(function() {
<div class="title">Vulkan Memory Allocator </div> </div>
</div><!--header-->
<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>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>

File diff suppressed because one or more lines are too long

View File

@ -25,7 +25,7 @@
/** \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>.
@ -237,7 +237,9 @@ void vmaCalculateStats(
VmaAllocator allocator,
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