Version 3.3.0

This commit is contained in:
Adam Sawicki 2025-05-12 13:42:18 +02:00
parent 0de67d61c4
commit 1d8f600fd4
6 changed files with 6 additions and 6 deletions

View file

@ -1,4 +1,4 @@
# 3.3.0 (2025-??-??) # 3.3.0 (2025-05-12)
Additions to the library API: Additions to the library API:

View file

@ -22,7 +22,7 @@
cmake_minimum_required(VERSION 3.15...3.26) cmake_minimum_required(VERSION 3.15...3.26)
project(VMA VERSION 3.2.1 LANGUAGES CXX) project(VMA VERSION 3.3.0 LANGUAGES CXX)
add_library(VulkanMemoryAllocator INTERFACE) add_library(VulkanMemoryAllocator INTERFACE)
add_library(GPUOpen::VulkanMemoryAllocator ALIAS VulkanMemoryAllocator) add_library(GPUOpen::VulkanMemoryAllocator ALIAS VulkanMemoryAllocator)

Binary file not shown.

View file

@ -87,7 +87,7 @@ $(function(){ initResizable(false); });
<div class="headertitle"><div class="title">Vulkan Memory Allocator </div></div> <div class="headertitle"><div class="title">Vulkan Memory Allocator </div></div>
</div><!--header--> </div><!--header-->
<div class="contents"> <div class="contents">
<div class="textblock"><p><b>Version 3.3.0-development</b></p> <div class="textblock"><p><b>Version 3.3.0</b></p>
<p>Copyright (c) 2017-2025 Advanced Micro Devices, Inc. All rights reserved. <br /> <p>Copyright (c) 2017-2025 Advanced Micro Devices, Inc. All rights reserved. <br />
License: MIT <br /> License: MIT <br />
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> 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>

View file

@ -25,7 +25,7 @@
/** \mainpage Vulkan Memory Allocator /** \mainpage Vulkan Memory Allocator
<b>Version 3.3.0-development</b> <b>Version 3.3.0</b>
Copyright (c) 2017-2025 Advanced Micro Devices, Inc. All rights reserved. \n Copyright (c) 2017-2025 Advanced Micro Devices, Inc. All rights reserved. \n
License: MIT \n License: MIT \n

View file

@ -36,8 +36,8 @@ static const char* const SHADER_PATH1 = "./Shaders/";
static const char* const SHADER_PATH2 = "../bin/"; static const char* const SHADER_PATH2 = "../bin/";
static const wchar_t* const WINDOW_CLASS_NAME = L"VULKAN_MEMORY_ALLOCATOR_SAMPLE"; static const wchar_t* const WINDOW_CLASS_NAME = L"VULKAN_MEMORY_ALLOCATOR_SAMPLE";
static const char* const VALIDATION_LAYER_NAME = "VK_LAYER_KHRONOS_validation"; static const char* const VALIDATION_LAYER_NAME = "VK_LAYER_KHRONOS_validation";
static const char* const APP_TITLE_A = "Vulkan Memory Allocator Sample 3.2.1"; static const char* const APP_TITLE_A = "Vulkan Memory Allocator Sample 3.3.0";
static const wchar_t* const APP_TITLE_W = L"Vulkan Memory Allocator Sample 3.2.1"; static const wchar_t* const APP_TITLE_W = L"Vulkan Memory Allocator Sample 3.3.0";
static const bool VSYNC = true; static const bool VSYNC = true;
static const uint32_t COMMAND_BUFFER_COUNT = 2; static const uint32_t COMMAND_BUFFER_COUNT = 2;