Last change
on this file since 107544 was 107544, checked in by vboxsync, 10 days ago |
libs/dxvk-2.3.1: Make it build on Windows (optionally, for development purpose)
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Author Date Id Revision
|
File size:
358 bytes
|
Line | |
---|
1 | #pragma once
|
---|
2 |
|
---|
3 | #ifdef DXVK_WSI_WIN32
|
---|
4 | #error You shouldnt be using this code path.
|
---|
5 | #elif DXVK_WSI_SDL2
|
---|
6 | #include "wsi/native_sdl2.h"
|
---|
7 | #elif DXVK_WSI_GLFW
|
---|
8 | #include "wsi/native_glfw.h"
|
---|
9 | #elif DXVK_WSI_HEADLESS
|
---|
10 | #if defined(VBOX) && defined(_WIN32)
|
---|
11 | #include "native/wsi/native_headless.h"
|
---|
12 | #else
|
---|
13 | #include "wsi/native_headless.h"
|
---|
14 | #endif
|
---|
15 | #else
|
---|
16 | #error Unknown wsi!
|
---|
17 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.