mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-25 16:24:24 +00:00
312828f12f
* Implement WebGL Backend * Add WebGL Fixes by @mrk-its * Update Limits for WASM and Examples * Address Review Points
22 lines
603 B
Rust
22 lines
603 B
Rust
fn main() {
|
|
// Setup cfg aliases
|
|
cfg_aliases::cfg_aliases! {
|
|
// Vendors/systems
|
|
wasm: { target_arch = "wasm32" },
|
|
apple: { any(target_os = "ios", target_os = "macos") },
|
|
unix_wo_apple: {all(unix, not(apple))},
|
|
|
|
// Backends
|
|
vulkan: { all(not(wasm), any(windows, unix_wo_apple)) },
|
|
metal: { all(not(wasm), apple) },
|
|
dx12: { all(not(wasm), windows) },
|
|
dx11: { all(false, not(wasm), windows) },
|
|
gl: {
|
|
any(
|
|
all(not(wasm), unix_wo_apple),
|
|
wasm
|
|
)
|
|
},
|
|
}
|
|
}
|