1. 17 6月, 2017 6 次提交
  2. 16 6月, 2017 3 次提交
  3. 15 6月, 2017 3 次提交
  4. 14 6月, 2017 1 次提交
  5. 13 6月, 2017 2 次提交
  6. 10 6月, 2017 2 次提交
  7. 09 6月, 2017 9 次提交
  8. 08 6月, 2017 5 次提交
  9. 07 6月, 2017 5 次提交
  10. 06 6月, 2017 4 次提交
    • S
      Add setInitialRoute on FlutterView. (#3727) · f37aafd4
      Sarah Zakarias 提交于
      f37aafd4
    • I
      Add breadcrumbs from dart:ui to other docs. (#3741) · 62c6f657
      Ian Hickson 提交于
      62c6f657
    • M
      Retain the parent of a SemanticsObject and implement proper dealloc (#3740) · 8686a458
      Michael Goderbauer 提交于
      * Retain the parent of a SemanticsObject
      
      This fixes the last known crash in iOS accessibility.
      
      * rework memory management
      
      * review comments
      8686a458
    • C
      Rework raster cache to fix numerous issues. (#3717) · 1c6a531e
      Chinmay Garde 提交于
      * Fix pixel rounding error in the picture layer by first ensuring that
        the texture for the image is at least as big as the next integer size
        along each dimension and using kStrict_SrcRectConstraint while
        drawing the same image. We already select the source subset by
        looking at the cull rect of the picture.
      * Decompose the transformation matrix into a series of operations that
        generated the same to calculate the scale at which to rasterize the
        picture. This make the rasterization scale resilient to
        transformations that introduce a perspective component to the
        resultant matrix.
      * The scale in the decomposed matrix is now part of the key in the
        cache.
      * Raster cache images that could never be rasterized were still taking
        part in the cache. Now, those entries are rejected early on. This
        leads to the sweep after the frame iterating over fewer items.
      * Added a unit test target.
      1c6a531e