2015-06-12 18:16:26 -04:00
..
2015-06-12 13:33:43 -04:00
2015-06-09 16:41:53 -04:00
2015-06-11 18:14:08 -04:00
2015-06-10 14:18:51 -04:00
2015-06-05 20:19:33 -04:00
2015-06-12 17:23:08 -04:00
2015-06-12 18:10:26 -04:00
2015-06-12 15:38:18 -04:00
2015-06-12 17:06:52 -04:00
2015-06-11 14:11:12 -04:00
2015-06-11 14:11:12 -04:00
2015-06-12 10:29:27 -04:00
2015-06-11 18:47:26 -04:00
2015-06-11 14:11:12 -04:00
2015-06-04 13:19:17 -04:00
2015-06-11 14:11:12 -04:00
2015-06-11 14:11:12 -04:00
2015-06-12 01:04:47 -04:00
2015-06-12 15:00:54 -04:00
2015-06-09 16:17:55 -04:00
2015-06-09 15:31:08 -04:00
2015-06-11 13:26:24 -04:00
2015-06-05 17:06:20 -04:00
2015-06-12 13:40:07 -04:00
2015-06-12 15:15:45 -04:00
2015-06-11 16:25:03 -04:00
2015-06-08 18:39:51 -04:00
2015-06-12 18:16:26 -04:00
2015-06-09 16:18:16 -04:00
2015-06-12 11:13:38 -04:00
2015-06-08 18:39:51 -04:00
2015-06-05 17:05:00 -04:00
2015-06-12 13:45:19 -04:00
2015-06-11 20:00:15 -04:00
2015-06-10 15:32:35 -04:00
2015-06-11 12:47:03 -04:00
2015-06-04 13:18:32 -04:00
2015-06-05 17:58:38 -04:00
2015-06-12 10:49:35 -04:00
2015-06-11 14:51:39 -04:00
Slate - IT'S FIXED! No more clip rounding error in Slate causing the last column or row of pixels to sometimes get clipped incorrectly. In slate we do pixel snapping on each vertex individually, which means that a box that's at x.3 and extends to w.7, will visually rendered at x to (w+1). The clipping rect was determined in pre-vertex rounding space, the clip rect is represented as origin, extentsX and extentsY. The extents are all computed in pre-pixel snapping space, so a box that goes from x.3 to w.7, becomes an extents of z.4, and is then rounded down. Meaning that on certain pixel offsets, some boxes ended up with an extents that is 1 pixel smaller from the visual version where each vertex is rounded individually. The solution is to perform pixel snapping on the axis aligned clipping rect, which is then used to create the rotated clip rect which is formed with the extents, then to transform it, and again pixel snap.
2015-06-10 18:48:52 -04:00
2015-06-12 16:04:14 -04:00
2015-06-12 14:55:16 -04:00
2015-06-10 18:34:57 -04:00