rpcsx/rpcs3/Emu/RSX/VK/vkutils/swapchain.h
DH 62ad27d1e2 split rpcs3 and hle libraries
merge rpcs3 utilities
2025-04-08 19:46:57 +03:00

11 lines
262 B
C

#pragma once
#if defined(_WIN32)
#include "swapchain_win32.hpp"
#elif defined(ANDROID)
#include "swapchain_android.hpp"
#elif defined(__APPLE__)
#include "swapchain_macos.hpp"
#else // Both linux and BSD families
#include "swapchain_unix.hpp"
#endif