Skip to content

Commit 5197efc

Browse files
Version 1.0.1 release.
1 parent 8bc1a7d commit 5197efc

File tree

4 files changed

+25
-18
lines changed

4 files changed

+25
-18
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 1.0.1 (2017-07-04)
2+
3+
- Fixes for Linux GCC compilation.
4+
- Changed "CONFIGURATION SECTION" to contain #ifndef so you can define these macros before including this header, not necessarily change them in the file.
5+
16
# 1.0.0 (2017-06-16)
27

3-
First public release.
8+
First public release.

docs/html/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
<div class="title">Vulkan Memory Allocator </div> </div>
6363
</div><!--header-->
6464
<div class="contents">
65-
<div class="textblock"><p>Version 1.0.0 (2017-06-16)</p>
65+
<div class="textblock"><p>Version 1.0.1 (2017-07-04)</p>
6666
<p>Members grouped: see <a href="modules.html"><b>Modules</b></a>.</p>
6767
<p>All members: see <a class="el" href="vk__mem__alloc_8h.html">vk_mem_alloc.h</a>.</p>
6868
<h1><a class="anchor" id="problem"></a>

docs/html/vk__mem__alloc_8h_source.html

Lines changed: 14 additions & 14 deletions
Large diffs are not rendered by default.

src/vk_mem_alloc.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
/** \mainpage Vulkan Memory Allocator
2727
28-
Version 1.0.0 (2017-06-16)
28+
Version 1.0.1 (2017-07-04)
2929
3030
Members grouped: see <a href="modules.html"><b>Modules</b></a>.
3131
@@ -237,7 +237,9 @@ void vmaCalculateStats(
237237
VmaAllocator allocator,
238238
VmaStats* pStats);
239239

240-
#define VMA_STATS_STRING_ENABLED 1
240+
#ifndef VMA_STATS_STRING_ENABLED
241+
#define VMA_STATS_STRING_ENABLED 1
242+
#endif
241243

242244
#if VMA_STATS_STRING_ENABLED
243245

0 commit comments

Comments
 (0)