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 8511814 commit 3551f91Copy full SHA for 3551f91
wgpu/build.rs
@@ -3,8 +3,8 @@ fn main() {
3
native: { not(target_arch = "wasm32") },
4
webgl: { all(target_arch = "wasm32", not(target_os = "emscripten"), feature = "webgl") },
5
webgpu: { all(target_arch = "wasm32", not(target_os = "emscripten"), feature = "webgpu") },
6
- wgpu_core: { any(native, webgl) },
7
emscripten: { all(target_arch = "wasm32", target_os = "emscripten") },
+ wgpu_core: { any(native, webgl, emscripten) },
8
send_sync: { any(
9
not(target_arch = "wasm32"),
10
all(feature = "fragile-send-sync-non-atomic-wasm", not(target_feature = "atomics"))
0 commit comments