mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Migrate Vulkan-Headers to submodule and update to v1.3.288
This commit is contained in:
@ -58,7 +58,7 @@ endif()
|
||||
# Only include the Vulkan headers when building the Vulkan backend
|
||||
target_include_directories(videovulkan
|
||||
PRIVATE
|
||||
${CMAKE_SOURCE_DIR}/Externals/Vulkan/Include
|
||||
${CMAKE_SOURCE_DIR}/Externals/Vulkan-Headers/include
|
||||
${CMAKE_SOURCE_DIR}/Externals/VulkanMemoryAllocator/include
|
||||
${CMAKE_SOURCE_DIR}/Externals/libadrenotools/include
|
||||
)
|
||||
|
@ -46,18 +46,21 @@
|
||||
#ifdef _MSVC_LANG
|
||||
#pragma warning(push, 4)
|
||||
#pragma warning(disable : 4189) // local variable is initialized but not referenced
|
||||
#pragma warning(disable : 4505) // function with internal linkage is not referenced
|
||||
|
||||
#endif // #ifdef _MSVC_LANG
|
||||
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Wunused-variable"
|
||||
#pragma clang diagnostic ignored "-Wunused-function"
|
||||
#pragma clang diagnostic ignored "-Wnullability-completeness"
|
||||
#endif // #ifdef __clang__
|
||||
|
||||
#ifdef __GNUC__
|
||||
#pragma GCC diagnostic push
|
||||
#pragma GCC diagnostic ignored "-Wunused-variable"
|
||||
#pragma GCC diagnostic ignored "-Wunused-function"
|
||||
#endif // #ifdef __GNUC__
|
||||
|
||||
#define VMA_VULKAN_VERSION 1001000
|
||||
|
Reference in New Issue
Block a user