mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2024-11-16 23:40:05 +00:00
14 lines
291 B
C++
14 lines
291 B
C++
|
// SPDX-FileCopyrightText: Copyright 2023 yuzu Emulator Project
|
||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#define VK_NO_PROTOTYPES
|
||
|
#ifdef _WIN32
|
||
|
#define VK_USE_PLATFORM_WIN32_KHR
|
||
|
#elif defined(__APPLE__)
|
||
|
#define VK_USE_PLATFORM_METAL_EXT
|
||
|
#endif
|
||
|
|
||
|
#include <vulkan/vulkan.h>
|