OvermindDL1
OvermindDL1
@pbiggar Oh yes please do!
Interestingly, `STEAM_INPUT_HANDLE_ALL_CONTROLLERS` is also missing? Wonder how bindgen missed that, is it missing from the C flat source?
> the safe bindings only have the things that people have needed and contributed in the past, so lots of stuff is missing. Feel free to open PRs or issues...
For note, on the wasm side it will only save memory for things about 10 in length (because 32-bits, still worth it I say), I'm more curious on saving it...
A quick test shows that though memory pressure is reduced, the extra conditional is adding enough overhead that offsets the performance boost from that for initial load, it only 'gains'...
Very unscientific, but using crates/mogwai-benches (not keyed, just normal, for maximum allocations happening) in this repo in the normal `main` branch and in my `string_overhaul_testing` (`stot` below for brevity, using...
I wonder if just using a `Cow
Didn't get time yesterday, busy at work, just looking into it this morning and I notice that non-static str's are able to be casted in (they are converted to Strings);...
Okay, a basic conversion to using `Cow
So yeah, again it seems within error bounds for speed, but it does reduce memory usage a bit, still unsure if its worth it though. It did reduce my SSR...