[iOS WK2] Use larger tiles when possible to reduce per-tile painting overhead
Created attachment 274623 [details] Patch
rdar://problem/24968144
Comment on attachment 274623 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=274623&action=review > Source/WebCore/platform/graphics/ca/TileController.cpp:367 > - double horizontalMargin = tileSize().width() / contentsScale; > - double verticalMargin = tileSize().height() / contentsScale; > + double horizontalMargin = kDefaultTileSize / contentsScale; > + double verticalMargin = kDefaultTileSize / contentsScale; Is this tested?
Yes, the overdraw should be tested. https://trac.webkit.org/r198502