rpcsx/rpcs3/Emu/RSX/VK/VulkanAPI.h

16 lines
329 B
C
Raw Normal View History

2020-12-05 13:08:24 +01:00
#pragma once
#ifdef _WIN32
#define VK_USE_PLATFORM_WIN32_KHR
#elif defined(__APPLE__)
#define VK_USE_PLATFORM_MACOS_MVK
#elif HAVE_X11
#define VK_USE_PLATFORM_XLIB_KHR
#endif
2017-01-28 13:32:45 +01:00
#include "restore_new.h"
#include <vulkan/vulkan.h>
#include <vulkan/vk_sdk_platform.h>
2017-01-28 13:32:45 +01:00
#include "define_new_memleakdetect.h"
2020-12-12 13:01:29 +01:00
#include "util/types.hpp"