2021-09-30 10:03:35 +00:00
|
|
|
//
|
2022-01-21 11:56:18 +00:00
|
|
|
// Copyright (c) 2017-2022 Advanced Micro Devices, Inc. All rights reserved.
|
2021-09-30 10:03:35 +00:00
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
|
|
// in the Software without restriction, including without limitation the rights
|
|
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
|
|
// furnished to do so, subject to the following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included in
|
|
|
|
// all copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
// THE SOFTWARE.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef VMA_USAGE_H_
|
|
|
|
#define VMA_USAGE_H_
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
|
2022-06-13 18:13:30 +00:00
|
|
|
#if !defined(NOMINMAX)
|
|
|
|
#define NOMINMAX
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(WIN32_LEAN_AND_MEAN)
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
#endif
|
|
|
|
|
2022-06-19 17:54:03 +00:00
|
|
|
#include <windows.h>
|
2021-09-30 10:03:35 +00:00
|
|
|
#if !defined(VK_USE_PLATFORM_WIN32_KHR)
|
|
|
|
#define VK_USE_PLATFORM_WIN32_KHR
|
|
|
|
#endif // #if !defined(VK_USE_PLATFORM_WIN32_KHR)
|
|
|
|
|
|
|
|
#else // #ifdef _WIN32
|
|
|
|
|
|
|
|
#include <vulkan/vulkan.h>
|
|
|
|
|
|
|
|
#endif // #ifdef _WIN32
|
|
|
|
|
|
|
|
#ifdef _MSVC_LANG
|
|
|
|
|
|
|
|
// Uncomment to test including `vulkan.h` on your own before including VMA.
|
|
|
|
//#include <vulkan/vulkan.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
In every place where you want to use Vulkan Memory Allocator, define appropriate
|
|
|
|
macros if you want to configure the library and then include its header to
|
|
|
|
include all public interface declarations. Example:
|
|
|
|
*/
|
|
|
|
|
|
|
|
//#define VMA_HEAVY_ASSERT(expr) assert(expr)
|
|
|
|
//#define VMA_DEDICATED_ALLOCATION 0
|
|
|
|
//#define VMA_DEBUG_MARGIN 16
|
|
|
|
//#define VMA_DEBUG_DETECT_CORRUPTION 1
|
|
|
|
//#define VMA_DEBUG_MIN_BUFFER_IMAGE_GRANULARITY 256
|
|
|
|
//#define VMA_USE_STL_SHARED_MUTEX 0
|
|
|
|
//#define VMA_MEMORY_BUDGET 0
|
2022-01-21 11:56:18 +00:00
|
|
|
//#define VMA_STATS_STRING_ENABLED 0
|
2022-02-17 13:44:06 +00:00
|
|
|
//#define VMA_MAPPING_HYSTERESIS_ENABLED 0
|
2021-09-30 10:03:35 +00:00
|
|
|
|
2022-02-17 13:44:06 +00:00
|
|
|
//#define VMA_VULKAN_VERSION 1003000 // Vulkan 1.3
|
2022-05-26 09:51:12 +00:00
|
|
|
//#define VMA_VULKAN_VERSION 1002000 // Vulkan 1.2
|
2021-09-30 10:03:35 +00:00
|
|
|
//#define VMA_VULKAN_VERSION 1001000 // Vulkan 1.1
|
|
|
|
//#define VMA_VULKAN_VERSION 1000000 // Vulkan 1.0
|
|
|
|
|
|
|
|
/*
|
|
|
|
#define VMA_DEBUG_LOG(format, ...) do { \
|
|
|
|
printf(format, __VA_ARGS__); \
|
|
|
|
printf("\n"); \
|
|
|
|
} while(false)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma warning(push, 4)
|
|
|
|
#pragma warning(disable: 4127) // conditional expression is constant
|
|
|
|
#pragma warning(disable: 4100) // unreferenced formal parameter
|
|
|
|
#pragma warning(disable: 4189) // local variable is initialized but not referenced
|
|
|
|
#pragma warning(disable: 4324) // structure was padded due to alignment specifier
|
|
|
|
|
|
|
|
#endif // #ifdef _MSVC_LANG
|
|
|
|
|
|
|
|
#ifdef __clang__
|
|
|
|
#pragma clang diagnostic push
|
|
|
|
#pragma clang diagnostic ignored "-Wtautological-compare" // comparison of unsigned expression < 0 is always false
|
|
|
|
#pragma clang diagnostic ignored "-Wunused-private-field"
|
|
|
|
#pragma clang diagnostic ignored "-Wunused-parameter"
|
|
|
|
#pragma clang diagnostic ignored "-Wmissing-field-initializers"
|
|
|
|
#pragma clang diagnostic ignored "-Wnullability-completeness"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "../include/vk_mem_alloc.h"
|
|
|
|
|
|
|
|
#ifdef __clang__
|
|
|
|
#pragma clang diagnostic pop
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef _MSVC_LANG
|
|
|
|
#pragma warning(pop)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|