We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b10a123 commit 73674f2Copy full SHA for 73674f2
src/wsi/meson.build
@@ -20,6 +20,7 @@ wsi_glfw_src = [
20
wsi_none_src = [
21
'none/wsi_monitor_none.cpp',
22
'none/wsi_window_none.cpp',
23
+ 'none/wsi_edid_none.cpp',
24
]
25
26
if dxvk_wsi == 'win32'
@@ -32,8 +33,8 @@ elif dxvk_wsi == 'glfw'
32
33
wsi_src = wsi_common_src + wsi_glfw_src
34
wsi_deps = [ dep_displayinfo, lib_glfw ]
35
elif dxvk_wsi == 'none'
- wsi_src = wsi_common_src + wsi_none_src
36
- wsi_deps = [ dep_displayinfo ]
+ wsi_src = wsi_none_src
37
+ wsi_deps = []
38
else
39
error('Unknown wsi')
40
endif
src/wsi/none/wsi_edid_none.cpp
@@ -0,0 +1,10 @@
1
+#include "wsi_edid.h"
2
+
3
+namespace dxvk::wsi {
4
5
+ std::optional<WsiDisplayMetadata> parseColorimetryInfo(
6
+ const WsiEdidData& edidData) {
7
+ return std::nullopt;
8
+ }
9
10
+}
0 commit comments