-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make std
usage optional for wgpu
.
#7337
base: trunk
Are you sure you want to change the base?
Conversation
|
Actually this just looks like a desync in the // Before
#[cfg(any(
not(target_arch = "wasm32"),
all(
feature = "fragile-send-sync-non-atomic-wasm",
not(target_feature = "atomics")
)
))]
pub trait WasmNotSend: Send {}
// After
#[cfg(all(
feature = "std",
any(
not(target_arch = "wasm32"),
all(
feature = "fragile-send-sync-non-atomic-wasm",
not(target_feature = "atomics")
)
)
))]
pub trait WasmNotSend: Send {} Caused the failing CI tasks for pass for me. If that's the fix, might be worth adding a comment indicating the two configuration options need to match. |
@bushrat011899 The problem is, that makes the |
Hmm that is a valid point. I assume the inverse, removing |
Playing around with this PR, enabling |
Connections
Part of implementing #6826. Followup to #7279.
Description
Adds a
std
feature towgpu
, without which it does not depend onwgpu-core?/std
.Doesn’t build yet, because the
WasmNotSendSync
trait bound is not met. Further work will be needed, and I’m not sure what yet; I'm publishing this draft PR to help people see what the problem space currently looks like.Testing
TBD
Squash or Rebase?
TBD
Checklist
cargo fmt
.taplo format
.cargo clippy
. If applicable, add:--target wasm32-unknown-unknown
cargo xtask test
to run tests.CHANGELOG.md
entry.