Aaro Perämaa

Results 17 comments of Aaro Perämaa

(Quite late reply but) it is done through the `alloc_func` method. If you build the crate documentation there is an example of the usage, so ```rust use rust_wasm::*; let mut...

Using an `array` for the decompressor works correctly, however naga denies the compressor function if q is changed to an array. "May only be indexed by a constant". WGSL spec...

@garyttierney As far as I am aware no one is working on this, so go ahead :) I would personally do this but I have been absolutely bogged down with...

Sorry to necro an old issue and I hope you have already fixed it. This issue is because steamworks is a dynamic library so needs to be loaded at runtime...

@erwanmaigret I don't think adding a scripting language to a model format is a good idea, especially JavaScript. What I would rather want to see (I haven't really read spec,...

Hey, I was wondering the same thing and came across the same issue. Seems like the book is outdated. Look here: https://kraktus.github.io/criterion.rs/user_guide/benchmarking_with_inputs.html#benchmarking-with-a-range-of-values The key gist is using `bench_with_input` and `BenchmarkId::new/from_parameter`...

Same or similar issue occurs on Windows Terminal (the new one, not cmd). Zellij 0.32.0 is running through an SSH session in an Ubuntu 20 environment. I have not been...

Thank you for the report, sorry for taking so long to get around to it. Fixed in #559c202. Oddly there was no associated crash even though there should have been.

Could you clarify the issue and perhaps provide some example code. Dropping the initialized `Client` should shutdown the Steamworks SDK cleanly.

Rust dropping occurs when a variable goes out of scope. It can be at the end of an if statement, a function etc. You can explicity drop it by moving...