mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-12-13 07:08:50 +01:00
9 lines
162 B
C
9 lines
162 B
C
|
#pragma once
|
||
|
|
||
|
#ifdef DXVK_WSI_WIN32
|
||
|
#error You shouldnt be using this code path.
|
||
|
#elif DXVK_WSI_SDL2
|
||
|
#include "wsi/native_sdl2.h"
|
||
|
#else
|
||
|
#error Unknown wsi!
|
||
|
#endif
|