RandyGaul

Results 139 comments of RandyGaul

Hmm, looks like there's a callback API I completely missed. ALSA can probably be setup just like CoreAudio and SDL, which might be a lot easier than the current strategy....

What kind of platform does this crash on, and why? Is it because pointer access is not memory aligned? Should each pointer returned from allocators be aligned? This is something...

One thing I was wondering is if in general it is preferable to have compile time alignment settings, or run-time alignment settings. I was thinking run-time since a single application...

We can update c2Collide's behavior, though this is a fairly time-consuming task. It would help to reduce time it takes to implement the changes to know which functions aren't transforming...

Reference: https://opensource.apple.com/source/tidy/tidy-2.2/tidy/src/utf8.c.auto.html

You would need a different implementation to avoid overdraw issues. Just using an arbitrary increment on t is "guessing" that start and endpoints don't overlap. Using a line rasterization algorithm...

Actually after some though it should be fine, since `tigrLine` doesn't draw the last pixel so no overlap. But, it would be in the spirit of tigr to have pixel...

Reading the pthread docs, sounds like the static initializer is only useful for default settings/attributes, and it skips error checking. Why not just use appropriate initializer functions, and avoid the...

Thanks! I believe you're right :)