skia-flutter-autoroll
68a34db17e
Roll src/third_party/skia 33d3d31a7e28..a9564d6dae1c (5 commits) ( flutter/engine#6185 )
...
Auto-roller completed checks. Merging.
2018-09-06 14:50:52 -04:00
Gary Qian
88c526d746
Fix LibTxt/minikin text shifiting when breaking into multiple runs ( flutter/engine#6184 )
2018-09-06 11:00:18 -07:00
skia-flutter-autoroll
cf10190eab
Roll src/third_party/skia 71f8475a0dba..33d3d31a7e28 (6 commits) ( flutter/engine#6182 )
...
Auto-roller completed checks. Merging.
2018-09-06 11:24:51 -04:00
skia-flutter-autoroll
e255e085a2
Roll src/third_party/skia ffbcc3fadfa1..71f8475a0dba (3 commits) ( flutter/engine#6181 )
...
Auto-roller completed checks. Merging.
2018-09-06 08:00:52 -04:00
Chinmay Garde
046847225c
Remove unused file picture_serializer. ( flutter/engine#6179 )
2018-09-05 19:45:55 -07:00
skia-flutter-autoroll
98a4821c26
Roll src/third_party/skia 343553a1fe9e..ffbcc3fadfa1 (6 commits) ( flutter/engine#6178 )
...
Auto-roller completed checks. Merging.
2018-09-05 20:05:51 -04:00
Michael Klimushyn
0282e85726
Add transparency helpers to FlutterView.java ( flutter/engine#6172 )
...
Fixes #9627
2018-09-05 16:47:02 -07:00
skia-flutter-autoroll
219d0fbf9b
Roll src/third_party/skia 9d1c88d9912d..343553a1fe9e (16 commits) ( flutter/engine#6175 )
...
Auto-roller completed checks. Merging.
2018-09-05 16:45:51 -04:00
Jason Simmons
8b341d2363
Remove the old location of the ICU data asset ( flutter/engine#6170 )
...
The tools are now placing icudtl.dat in the flutter_shared directory.
It is no longer necessary to check for this asset at its previous path.
2018-09-05 12:22:27 -07:00
Simon Lightfoot
7ccb33b1c0
Fixes negative end selection offset. ( flutter/engine#6171 )
2018-09-05 12:12:21 -07:00
Michael Klimushyn
605c146d02
Enable transparent FlutterViews ( flutter/engine#6163 )
...
- Changes rasterizer to clear the canvas with `SkColor_TRANSPARENT`
- Removes the unused `backgroundColor` param from `FlutterView.java`
2018-09-05 10:44:02 -07:00
skia-flutter-autoroll
9fb55565e6
Roll src/third_party/skia d0f0cb8ffc5e..9d1c88d9912d (12 commits) ( flutter/engine#6168 )
...
Auto-roller completed checks. Merging.
2018-09-05 13:05:51 -04:00
Jason Simmons
2e2d63b213
Remove obsolete discovery mechanism from FlutterView ( flutter/engine#6157 )
2018-09-05 10:01:33 -07:00
skia-flutter-autoroll
f3fda749a8
Roll src/third_party/skia 9478f7a38e6c..d0f0cb8ffc5e (1 commits) ( flutter/engine#6167 )
...
Auto-roller completed checks. Merging.
2018-09-05 09:41:51 -04:00
skia-flutter-autoroll
9bc0c18bbf
Roll src/third_party/skia 72a02112a99f..9478f7a38e6c (1 commits) ( flutter/engine#6166 )
...
Auto-roller completed checks. Merging.
2018-09-05 06:16:51 -04:00
skia-flutter-autoroll
fb7ce4249a
Roll src/third_party/skia 85f4e40c5481..72a02112a99f (1 commits) ( flutter/engine#6165 )
...
Auto-roller completed checks. Merging.
2018-09-05 02:51:51 -04:00
skia-flutter-autoroll
5a029b4fe4
Roll src/third_party/skia fddc6fa394cb..85f4e40c5481 (1 commits) ( flutter/engine#6164 )
...
Auto-roller completed checks. Merging.
2018-09-04 23:26:51 -04:00
Chinmay Garde
e226cce0b6
Fix windows build. ( flutter/engine#6162 )
2018-09-04 18:23:29 -07:00
skia-flutter-autoroll
1599505885
Roll src/third_party/skia e486bbaae296..fddc6fa394cb (2 commits) ( flutter/engine#6159 )
...
Auto-roller completed checks. Merging.
2018-09-04 20:02:51 -04:00
Jason Simmons
c8316af625
Add some more logs for diagnosing screenshot failures ( flutter/engine#6156 )
...
Fixes https://github.com/flutter/flutter/issues/21228
2018-09-04 14:38:10 -07:00
skia-flutter-autoroll
56307bb5d7
Roll src/third_party/skia b84576af0a43..e486bbaae296 (9 commits) ( flutter/engine#6155 )
...
Auto-roller completed checks. Merging.
2018-09-04 16:37:51 -04:00
Gary Qian
cba6b65789
Use double multiplication by a scale instead of 3 divides for speed. ( flutter/engine#6154 )
2018-09-04 10:54:52 -07:00
Gary Qian
6cc612b7b3
Revert "Use Skia normalize again after Skia precision fix. ( #6121 )" ( flutter/engine#6122 )
...
This reverts commit 7d6d2fd49f .
2018-09-04 10:21:30 -07:00
skia-flutter-autoroll
b7d0133cff
Roll src/third_party/skia a45e1a71f548..b84576af0a43 (16 commits) ( flutter/engine#6153 )
...
Auto-roller completed checks. Merging.
2018-09-04 13:13:51 -04:00
skia-flutter-autoroll
634676ac31
Roll src/third_party/skia cff3fd834ca8..a45e1a71f548 (1 commits) ( flutter/engine#6152 )
...
Auto-roller completed checks. Merging.
2018-09-04 09:48:58 -04:00
Kirill Nikolaev
fe8d1b47e2
Unregister onFrameAvailable callbacks when a TextureEntry is released. ( flutter/engine#6079 )
...
Otherwise the callbacks may be called after FlutterNativeView is destroyed and is null.
Also defensively check for whether the texture is already released in the callback because the callback may be called from another thread by a stale reference (see the comment).
This closes https://github.com/flutter/flutter/issues/20951 .
2018-09-04 06:31:01 -07:00
skia-flutter-autoroll
ae08a5308d
Roll src/third_party/skia 24e58341fbcd..cff3fd834ca8 (1 commits) ( flutter/engine#6151 )
...
Auto-roller completed checks. Merging.
2018-09-04 00:27:51 -04:00
skia-flutter-autoroll
be56558fad
Roll src/third_party/skia bf67741140fd..24e58341fbcd (2 commits) ( flutter/engine#6148 )
...
Auto-roller completed checks. Merging.
2018-09-03 16:52:51 -04:00
skia-flutter-autoroll
7313f21881
Roll src/third_party/skia 88119de2b849..bf67741140fd (1 commits) ( flutter/engine#6147 )
...
Auto-roller completed checks. Merging.
2018-09-03 13:28:51 -04:00
skia-flutter-autoroll
fbdfbf7b94
Roll src/third_party/skia 09a7bb222172..88119de2b849 (1 commits) ( flutter/engine#6146 )
...
Auto-roller completed checks. Merging.
2018-09-03 10:05:13 -04:00
skia-flutter-autoroll
9d47f82b37
Roll src/third_party/skia 2f53025e8bf1..09a7bb222172 (1 commits) ( flutter/engine#6144 )
...
Auto-roller completed checks. Merging.
2018-09-03 06:39:51 -04:00
skia-flutter-autoroll
c6556fe4cb
Roll src/third_party/skia ca858b68c34b..2f53025e8bf1 (1 commits) ( flutter/engine#6143 )
...
Auto-roller completed checks. Merging.
2018-09-02 22:00:51 -04:00
skia-flutter-autoroll
fb0c1a47f6
Roll src/third_party/skia 2f8c60e28682..ca858b68c34b (2 commits) ( flutter/engine#6142 )
...
Auto-roller completed checks. Merging.
2018-09-02 16:35:51 -04:00
skia-flutter-autoroll
937cbbc61d
Roll src/third_party/skia 8534723c7be1..2f8c60e28682 (1 commits) ( flutter/engine#6141 )
...
Auto-roller completed checks. Merging.
2018-09-02 13:11:51 -04:00
skia-flutter-autoroll
aaa3656e95
Roll src/third_party/skia e8e12e89c46b..8534723c7be1 (1 commits) ( flutter/engine#6140 )
...
Auto-roller completed checks. Merging.
2018-09-02 06:07:51 -04:00
Chinmay Garde
9e50854627
Fix crash in text layout when GetMinikinFontCollectionForStyle returns null. ( flutter/engine#6139 )
2018-09-01 21:14:53 -07:00
skia-flutter-autoroll
5093f9f434
Roll src/third_party/skia 6487e5ca6f10..e8e12e89c46b (1 commits) ( flutter/engine#6138 )
...
Auto-roller completed checks. Merging.
2018-09-01 02:53:51 -04:00
Chinmay Garde
7be525a816
Fix windows embedder builds. ( flutter/engine#6137 )
2018-08-31 20:23:53 -07:00
Chinmay Garde
f2049c7687
Allow embedders to specify software renderer configs. ( flutter/engine#6133 )
2018-08-31 20:03:06 -07:00
skia-flutter-autoroll
79d8614074
Roll src/third_party/skia 7bfe8438a94b..6487e5ca6f10 (6 commits) ( flutter/engine#6136 )
...
Auto-roller completed checks. Merging.
2018-08-31 19:38:51 -04:00
skia-flutter-autoroll
2534f58257
Roll src/third_party/skia 62db8d577931..7bfe8438a94b (20 commits) ( flutter/engine#6134 )
...
Auto-roller completed checks. Merging.
2018-08-31 16:12:51 -04:00
James D. Lin
81ba4c9458
Mark deprecated Flutter iOS APIs as unavailable ( flutter/engine#6124 )
...
The following were previously marked as deprecated over a month ago:
* `FlutterStandardBigInteger`
* `-[FlutterDartProject initFromDefaultSourceForConfiguration]`
Remove their implementations and mark them as unavailable.
2018-08-31 12:33:57 -07:00
Michael Goderbauer
4d7e7d21c9
Roll buildroot to pick up new NDK r17b ( flutter/engine#6131 )
2018-08-31 11:28:18 -07:00
skia-flutter-autoroll
00cc4ba079
Roll src/third_party/skia 8ff2f13f3817..62db8d577931 (21 commits) ( flutter/engine#6130 )
...
Auto-roller completed checks. Merging.
2018-08-31 12:47:51 -04:00
skia-flutter-autoroll
31a5f16c06
Roll src/third_party/skia f8592a69428e..8ff2f13f3817 (1 commits) ( flutter/engine#6129 )
...
Auto-roller completed checks. Merging.
2018-08-31 08:36:51 -04:00
skia-flutter-autoroll
4ca0d76130
Roll src/third_party/skia 381efe73499e..f8592a69428e (1 commits) ( flutter/engine#6127 )
...
Auto-roller completed checks. Merging.
2018-08-30 23:10:51 -04:00
skia-flutter-autoroll
4b5639434c
Roll src/third_party/skia 8e318fda76df..381efe73499e (11 commits) ( flutter/engine#6126 )
...
Auto-roller completed checks. Merging.
2018-08-30 19:47:51 -04:00
matthew-carroll
d9a6288e00
Add license file patching instructions to README ( flutter/engine#6125 )
...
Add license file patching instructions to README
2018-08-30 16:37:58 -07:00
James D. Lin
d65c8d71d9
Add a -[FlutterViewController splashScreenView] property ( flutter/engine#6112 )
...
Add a `-[FlutterViewController splashScreenView]` property
Add a `-[FlutterViewController splashScreenView]` property that
clients can use to customize the launch view (issue #17140 ).
2018-08-30 15:13:28 -07:00
skia-flutter-autoroll
c7e3a568a6
Roll src/third_party/skia 7ed0eae0cd13..8e318fda76df (17 commits) ( flutter/engine#6123 )
...
Auto-roller completed checks. Merging.
2018-08-30 16:29:51 -04:00