Skip to content

Commit 5ae219a

Browse files
Updated version numer to 2.0.0 final in code and documentation.
1 parent 3d9caf3 commit 5ae219a

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

CHANGELOG.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
1-
# 2.0.0-alpha (2017-09-12)
1+
# 2.0.0 (2018-03-19)
22

33
A major release with many compatibility-breaking changes.
44

5-
This code is work in progress and subject to changes.
6-
75
Notable new features:
86

97
- Introduction of `VmaAllocation` handle that you must retrieve from allocation functions and pass to deallocation functions next to normal `VkBuffer` and `VkImage`.
108
- Introduction of `VmaAllocationInfo` structure that you can retrieve from `VmaAllocation` handle to access parameters of the allocation (like `VkDeviceMemory` and offset) instead of retrieving them directly from allocation functions.
11-
- Support for persistently mapped allocations - see `VMA_MEMORY_REQUIREMENT_PERSISTENT_MAP_BIT`.
12-
- Support for custom memory pools - `VmaPool` handle, `VmaPoolCreateInfo` structure, `vmaCreatePool` function.
9+
- Support for reference-counted mapping and persistently mapped allocations - see `vmaMapMemory`, `VMA_ALLOCATION_CREATE_MAPPED_BIT`.
10+
- Support for custom memory pools - see `VmaPool` handle, `VmaPoolCreateInfo` structure, `vmaCreatePool` function.
1311
- Support for defragmentation (compaction) of allocations - see function `vmaDefragment` and related structures.
1412
- Support for "lost allocations" - see appropriate chapter on documentation Main Page.
1513

src/vk_mem_alloc.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ extern "C" {
2929

3030
/** \mainpage Vulkan Memory Allocator
3131
32-
<b>Version 2.0.0-alpha.8</b> (2018-03-05)
32+
<b>Version 2.0.0</b> (2018-03-19)
3333
3434
Copyright (c) 2017-2018 Advanced Micro Devices, Inc. All rights reserved. \n
3535
License: MIT

tools/VmaDumpVis/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# VMA Dump Vis
22

3-
Vulkan Memory Allocator Dump Visualization. It is an auxiliary tool that can visualize internal state of [Vulkan Memory Allocator](../README.md) library on a picture. It is a Python script that must be launched from command line with appropriate parameters.
3+
Vulkan Memory Allocator Dump Visualization. It is an auxiliary tool that can visualize internal state of [Vulkan Memory Allocator](../../README.md) library on a picture. It is a Python script that must be launched from command line with appropriate parameters.
44

55
## Requirements
66

0 commit comments

Comments
 (0)