mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-03-04 20:44:00 +01:00
There are better memleak detection tools. 1) Requires to guard placement new and external libs 2) Doesn't work thoroughly
14 lines
266 B
C
14 lines
266 B
C
#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
|
|
|
|
#include <vulkan/vulkan.h>
|
|
#include <vulkan/vk_sdk_platform.h>
|
|
#include "util/types.hpp"
|