1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

fix(ext/webgpu): allow GL backend on Windows (#26206)

It should be supported according to
[this](https://github.com/gfx-rs/wgpu?tab=readme-ov-file#supported-platforms).

Fixes https://github.com/denoland/deno/issues/26144
This commit is contained in:
Divy Srivastava 2024-10-14 11:10:27 +05:30 committed by GitHub
parent 64c304a452
commit 7c3da2ec1c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -44,7 +44,7 @@ mod macros {
#[cfg(all(not(target_arch = "wasm32"), windows))] #[cfg(all(not(target_arch = "wasm32"), windows))]
wgpu_types::Backend::Dx12 => $($c)*.$method::<wgpu_core::api::Dx12> $params, wgpu_types::Backend::Dx12 => $($c)*.$method::<wgpu_core::api::Dx12> $params,
#[cfg(any( #[cfg(any(
all(unix, not(target_os = "macos"), not(target_os = "ios")), all(not(target_os = "macos"), not(target_os = "ios")),
feature = "angle", feature = "angle",
target_arch = "wasm32" target_arch = "wasm32"
))] ))]