Results 3 comments of glalonde

Not sure if this is the exact same issue but it seems module scope constants are [explicitly allowed for workgroup_size](https://www.w3.org/TR/WGSL/#attribute-workgroup_size), but naga [only accepts literals](https://github.com/gfx-rs/naga/blob/4bd1efc34d6a54ed2f14ff6ec5fa77488f3df6b5/src/front/wgsl/mod.rs#L4161). Would be nice to do...

This already works if you remove the mp3 feature: `rodio = { git = "https://github.com/RustAudio/rodio" , default-features = false, features = ["vorbis", "flac", "wav"] }` It also works if we...

It works if you use a OutputStream: https://github.com/glalonde/wasm_audio/blob/f01b022e5e9a0525f37f556367154aedf19c7dbc/src/lib.rs#L55 Also make sure you compile for release, because it's has choppy playback otherwise. edit: oops didn't see that's what you're already doing....