ronaaron

Results 64 comments of ronaaron

It turns out you do not need the other nonsense. All you need is to tell SDL you want GLES3 and not GLES2, then it magically works.

I would have to think a lot harder about it to come up with something useful, I think. That said, anything which currently touches the nk_convert_config's *_segment_count is something which...

OK, here's a code snippet which seems to do a good job. I only put it in nk_draw_list_path_arc_to(), just before where "d_angle" is calculated (because that depends on 'segments'). I'm...

Slightly different: make the length of each segment smaller than some 'tolerance' value. I have no idea how to pick a good one, but this seems to work tolerably well:...

OK, I think for arc and circle, this code works great: ```` /* make segments smaller than tolerance: */ const static float tolerance = 3; /* adjust segments based on...

Just to add: when compiling [my '8th' compiler](https://8th-dev.com/) it succeeds compiling, but the runtime behavior is quite bad. Reverting rpmalloc to an older version (955f44b6c35662e19c3e5f8ae93d8b658134c2ca) works properly.

What I would like is to be able, on a mobile device, use the typical finger swipe to scroll a list or combo box, instead of (or in addition to)...

> FYI to @ronaaron this would help classify files and syntax highlight for 8th sources on GitHub OK; I have no idea how to create a grammar script for github...