2025-09-01 00:20:03 +02:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
2023-07-30 13:10:00 +02:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2023 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "video_core/vulkan_common/vulkan.h"
|
|
|
|
|
|
|
|
#define VMA_STATIC_VULKAN_FUNCTIONS 0
|
|
|
|
#define VMA_DYNAMIC_VULKAN_FUNCTIONS 1
|
|
|
|
|
2025-10-05 00:00:52 +02:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning( push )
|
|
|
|
#pragma warning( disable : 4189 )
|
|
|
|
#endif
|
2025-09-01 00:20:03 +02:00
|
|
|
#include "vk_mem_alloc.h"
|
2025-10-05 00:00:52 +02:00
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning( pop )
|
|
|
|
#endif
|