diff --git a/docs/html/index.html b/docs/html/index.html index 8d81d72..4f8502e 100644 --- a/docs/html/index.html +++ b/docs/html/index.html @@ -65,7 +65,7 @@ $(function() {
Version 3.0.0 (2022-03-25)
+Version 3.0.1-development (2022-03-28)
Copyright (c) 2017-2022 Advanced Micro Devices, Inc. All rights reserved.
License: MIT
API documentation divided into groups: Modules
diff --git a/docs/html/quick_start.html b/docs/html/quick_start.html index 5b24419..cc0617f 100644 --- a/docs/html/quick_start.html +++ b/docs/html/quick_start.html @@ -83,7 +83,7 @@ Project setupIt may be a good idea to create dedicated CPP file just for this purpose.
This library includes header <vulkan/vulkan.h>
, which in turn includes <windows.h>
on Windows. If you need some specific macros defined before including these headers (like WIN32_LEAN_AND_MEAN
or WINVER
for Windows, VK_USE_PLATFORM_WIN32_KHR
for Vulkan), you must define them before every #include
of this library.
VMA_IMPLEMENTATION
macro must be compiled as C++, NOT as C.This library is written in C++, but has C-compatible interface. Thus you can include and use vk_mem_alloc.h in C or C++ code, but full implementation with VMA_IMPLEMENTATION
macro must be compiled as C++, NOT as C. Some features of C++14 used. STL containers, RTTI, or C++ exceptions are not used.
At program startup:
diff --git a/include/vk_mem_alloc.h b/include/vk_mem_alloc.h index 94d878a..c2d5d46 100644 --- a/include/vk_mem_alloc.h +++ b/include/vk_mem_alloc.h @@ -17608,9 +17608,10 @@ before including these headers (like `WIN32_LEAN_AND_MEAN` or `WINVER` for Windows, `VK_USE_PLATFORM_WIN32_KHR` for Vulkan), you must define them before every `#include` of this library. -\note This library is written in C++, but has C-compatible interface. +This library is written in C++, but has C-compatible interface. Thus you can include and use vk_mem_alloc.h in C or C++ code, but full implementation with `VMA_IMPLEMENTATION` macro must be compiled as C++, NOT as C. +Some features of C++14 used. STL containers, RTTI, or C++ exceptions are not used. \section quick_start_initialization Initialization