mirror of
https://github.com/gfx-rs/wgpu.git
synced 2026-04-22 03:02:01 -04:00
* Add visionos support * Use `target_vendor = "apple"` * Fixes * Build VisionOS * Gah * Bleh * Typos --------- Co-authored-by: Guus Waals <_@guusw.nl>
14 lines
559 B
Rust
14 lines
559 B
Rust
fn main() {
|
|
cfg_aliases::cfg_aliases! {
|
|
send_sync: { any(
|
|
not(target_arch = "wasm32"),
|
|
all(feature = "fragile-send-sync-non-atomic-wasm", not(target_feature = "atomics"))
|
|
) },
|
|
webgl: { all(target_arch = "wasm32", not(target_os = "emscripten"), gles) },
|
|
dx12: { all(target_os = "windows", feature = "dx12") },
|
|
gles: { all(feature = "gles") },
|
|
metal: { all(target_vendor = "apple", feature = "metal") },
|
|
vulkan: { all(not(target_arch = "wasm32"), feature = "vulkan") }
|
|
}
|
|
}
|