Android opaque regular polygon not clipping (OnePlus One URP 10.2.2)
When using opaque regular polygons (like the filled beehive in the ShapesGallery) on an older android device there seems to be a precision problem which results in all pixels being rendered.
My guess would be that `VERY_SMOL` is too small for the half values of older android devices. Here is a test with an OnePlus One:
#define VERY_SMOL 0.000001
#define VERY_SMOL 0.0001
From what I can tell, the results seem to look fine with a larger VERY_SMOL number, so maybe the easiest solution is to make VERY_SMOL A_LITTLE_BIT_BIGGER? ;)
Otherwise, I'm having a splendid time with shapes so far. Thanks for making such a beautiful piece of software!
it's weird how this seems to only affect the regular polygon though, as this is used absolutely everywhere! I'll have to look into it