2026-03-26 02:53:43 -04:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project
|
2025-09-01 00:20:03 +02:00
|
|
|
// 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 )
|
2026-03-26 02:53:43 -04:00
|
|
|
#elif defined(__clang__)
|
|
|
|
|
#pragma clang diagnostic push
|
|
|
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
2025-10-05 00:00:52 +02:00
|
|
|
#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 )
|
2026-03-26 02:53:43 -04:00
|
|
|
#elif defined(__clang__)
|
|
|
|
|
#pragma clang diagnostic pop
|
2025-10-05 00:00:52 +02:00
|
|
|
#endif
|