Skip to content

Commit 1d8f600

Browse files
Version 3.3.0
1 parent 0de67d6 commit 1d8f600

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 3.3.0 (2025-??-??)
1+
# 3.3.0 (2025-05-12)
22

33
Additions to the library API:
44

CMakeLists.txt

+1-1
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.1 LANGUAGES CXX)
25+
project(VMA VERSION 3.3.0 LANGUAGES CXX)
2626

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

bin/VmaSample_Release_vs2022.exe

-270 KB
Binary file not shown.

docs/html/index.html

+1-1
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.3.0-development</b></p>
90+
<div class="textblock"><p><b>Version 3.3.0</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

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
/** \mainpage Vulkan Memory Allocator
2727

28-
<b>Version 3.3.0-development</b>
28+
<b>Version 3.3.0</b>
2929

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

src/VulkanSample.cpp

+2-2
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.1";
40-
static const wchar_t* const APP_TITLE_W = L"Vulkan Memory Allocator Sample 3.2.1";
39+
static const char* const APP_TITLE_A = "Vulkan Memory Allocator Sample 3.3.0";
40+
static const wchar_t* const APP_TITLE_W = L"Vulkan Memory Allocator Sample 3.3.0";
4141

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

0 commit comments

Comments
 (0)