mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2024-12-11 19:04:23 +01: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>
|