mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-20 22:05:12 +00:00
11 lines
262 B
C
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
|