Skip to content

Commit c788c52

Browse files
Version 3.2.1
1 parent 72c309a commit c788c52

File tree

6 files changed

+13
-5
lines changed

6 files changed

+13
-5
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# 3.2.1 (2025-02-05)
2+
3+
Changes:
4+
5+
- Fixed an assert in `vmaCreateAllocator` function incorrectly failing when Vulkan version 1.4 is used (#457).
6+
- Fix for importing function `vkGetPhysicalDeviceMemoryProperties2` / `vkGetPhysicalDeviceMemoryProperties2KHR` when `VMA_DYNAMIC_VULKAN_FUNCTIONS` macro is enabled (#410).
7+
- Other minor fixes and improvements...
8+
19
# 3.2.0 (2024-12-30)
210

311
Additions to the library API:

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
cmake_minimum_required(VERSION 3.15...3.26)
2424

25-
project(VMA VERSION 3.2.0 LANGUAGES CXX)
25+
project(VMA VERSION 3.2.1 LANGUAGES CXX)
2626

2727
add_library(VulkanMemoryAllocator INTERFACE)
2828
add_library(GPUOpen::VulkanMemoryAllocator ALIAS VulkanMemoryAllocator)

bin/VmaSample_Release_vs2022.exe

287 KB
Binary file not shown.

docs/html/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
<div class="headertitle"><div class="title">Vulkan Memory Allocator </div></div>
8888
</div><!--header-->
8989
<div class="contents">
90-
<div class="textblock"><p><b>Version 3.2.0</b></p>
90+
<div class="textblock"><p><b>Version 3.2.1</b></p>
9191
<p>Copyright (c) 2017-2025 Advanced Micro Devices, Inc. All rights reserved. <br />
9292
License: MIT <br />
9393
See also: <a href="https://gpuopen.com/gaming-product/vulkan-memory-allocator/">product page on GPUOpen</a>, <a href="https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator">repository on GitHub</a></p>

include/vk_mem_alloc.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
/** \mainpage Vulkan Memory Allocator
2727

28-
<b>Version 3.2.0</b>
28+
<b>Version 3.2.1</b>
2929

3030
Copyright (c) 2017-2025 Advanced Micro Devices, Inc. All rights reserved. \n
3131
License: MIT \n

src/VulkanSample.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ static const char* const SHADER_PATH1 = "./Shaders/";
3636
static const char* const SHADER_PATH2 = "../bin/";
3737
static const wchar_t* const WINDOW_CLASS_NAME = L"VULKAN_MEMORY_ALLOCATOR_SAMPLE";
3838
static const char* const VALIDATION_LAYER_NAME = "VK_LAYER_KHRONOS_validation";
39-
static const char* const APP_TITLE_A = "Vulkan Memory Allocator Sample 3.2.0";
40-
static const wchar_t* const APP_TITLE_W = L"Vulkan Memory Allocator Sample 3.2.0";
39+
static const char* const APP_TITLE_A = "Vulkan Memory Allocator Sample 3.2.1";
40+
static const wchar_t* const APP_TITLE_W = L"Vulkan Memory Allocator Sample 3.2.1";
4141

4242
static const bool VSYNC = true;
4343
static const uint32_t COMMAND_BUFFER_COUNT = 2;

0 commit comments

Comments
 (0)