michael8090

Results 9 comments of michael8090

@josephschmitt is the lib still maintained?

https://github.com/rustwasm/walrus/pull/232

We're building a WebGL render engine with rust-bindgen and we have about 100k lines of code in rust. Debuging with logging is OK but... it always feels like an essential...

I just noticed @nokaten is working on a promising one: https://github.com/rustwasm/walrus/pull/231

After some experiments, I find it's possible to show Rust code in the Chrome DevTools with the following steps: 1. add a `--keep-debug` in `wasm-bindgen` when building the wasm file,...

> It seems more like the debug info is "broken" after wasm-bindgen processes it, as in enough to make the source show up, but not enough for Chrome to handle...

Thanks for the wonderful work. I played for a while and found the following: 1. breakpoint, stepping: works nicely, great 2. local variable inspecting: it shows `undefined` for every local...

@theBull No, I've no write access

The problem with two buffers (or two atomic store operations) is that the memory is non-inherent, in another word, when two threads do "atomicMax(buffer, depth); if (depth > old_depth) {atomicStore(buffer,...