RandyGaul
RandyGaul
Here's one you might like! It's endian agnostic since it reads or writes one byte at the time. The underlying CPU architecture handles endianness within the bitshift operators. No need...
This would allow trivial browser builds at the cost of no fire-and-forget packets -- only reliable-in-order (because it's TCP). We'd still use all of cute_net's security features, but most of...
pitch is broken coreaudio untested (but SDL2 + win32 is well tested) docs need to be fleshed out the demos/examples also need to be updated volume should probably be clamped...
Needs to be supported to for acks during zero traffic moments
Should pretty much look like Cute Framework's API. ```cpp struct sound_params_t { bool paused = false; bool looped = false; float volume = 1.0f; float pan = 0.5f; float pitch...
Aseprite 1.3 introduced tilesets (very cool). Let's add in some parser support for it!
As an optimization for inflation the convex hull operation is skipped. This is cool, but for shrinking it doesn't work so simply. Entire voronoi regions can disappear since the scaling...
As of now there's no logic to deal with invalidly encoded strings. Some code paths for this would be needed for a secure implementation. I was thinking of maybe using...
A while ago I made an attempt to use lookup table accelerator for decoding, and use the binary search decoder as a fallback if the code bitlength was beyond the...
Seems like @jedisct1 has made this library, at least in part, as a bit of an experiment in API design. So maybe feedback/thoughts like this are just way too late,...