summaryrefslogtreecommitdiffstats
path: root/src/libs/dxvk-native-1.9.2a/include/native/wsi/native_headless.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/dxvk-native-1.9.2a/include/native/wsi/native_headless.h')
-rw-r--r--src/libs/dxvk-native-1.9.2a/include/native/wsi/native_headless.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/libs/dxvk-native-1.9.2a/include/native/wsi/native_headless.h b/src/libs/dxvk-native-1.9.2a/include/native/wsi/native_headless.h
new file mode 100644
index 00000000..7dab4cce
--- /dev/null
+++ b/src/libs/dxvk-native-1.9.2a/include/native/wsi/native_headless.h
@@ -0,0 +1,24 @@
+#include <cstdint>
+#include <windows.h>
+
+namespace dxvk::wsi {
+
+ inline void* fromHwnd(HWND hWindow) {
+ return reinterpret_cast<void *>(hWindow);
+ }
+
+ inline HWND toHwnd(void* pWindow) {
+ return reinterpret_cast<HWND>(pWindow);
+ }
+
+ // Offset so null HMONITORs go to -1
+ inline int32_t fromHmonitor(HMONITOR hMonitor) {
+ return static_cast<int32_t>(reinterpret_cast<intptr_t>(hMonitor)) - 1;
+ }
+
+ // Offset so -1 display id goes to 0 == NULL
+ inline HMONITOR toHmonitor(int32_t displayId) {
+ return reinterpret_cast<HMONITOR>(static_cast<intptr_t>(displayId + 1));
+ }
+
+} \ No newline at end of file