We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b7d41a commit 452e921Copy full SHA for 452e921
1 file changed
apps/plumeimpactor/src/main.rs
@@ -57,13 +57,13 @@ fn main() -> iced::Result {
57
// We're going to try and try running the iced_daemon with different
58
// environment variables so it can run properly
59
// RE: https://github.com/claration/Impactor/issues/103, https://github.com/claration/Impactor/issues/90
60
- #[cfg(any(target_os = "linux", target_os = "windows"))]
+ #[cfg(target_os = "linux")]
61
check_gpu();
62
63
run_daemon()
64
}
65
66
-#[cfg(any(target_os = "linux", target_os = "windows"))]
+#[cfg(target_os = "linux")]
67
fn check_gpu() {
68
let instance = wgpu::Instance::default();
69
0 commit comments