Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(241)

Issue 1192443003: [Slimming Paint] Blink-side contiguous allocation of display items. (Closed)

Created:
5 years, 6 months ago by jbroman
Modified:
5 years, 6 months ago
Reviewers:
CC:
blink-reviews, dshwang, eae+blinkwatch, fs, kouhei+svg_chromium.org, rwlbuis, krit, szager+layoutwatch_chromium.org, Justin Novosad, danakj, Rik, jchaffraix+rendering, blink-reviews-paint_chromium.org, gyuyoung2, pdr+svgwatchlist_chromium.org, zoltan1, jbroman, pdr+graphicswatchlist_chromium.org, blink-reviews-rendering, pdr+renderingwatchlist_chromium.org, leviw+renderwatch, slimming-paint-reviews_chromium.org, f(malita), Stephen Chennney
Target Ref:
refs/heads/master
Project:
blink
Visibility:
Public.

Description

[Slimming Paint] Blink-side contiguous allocation of display items. Similar to cc::ListContainer, but implemented on top of WTF. BUG=484943

Patch Set 1 #

Patch Set 2 : merge with master #

Patch Set 3 : forgot CachedDisplayItem #

Patch Set 4 : need a constructor with WTF_MAKE_NONCOPYABLE #

Unified diffs Side-by-side diffs Delta from patch set Stats (+510 lines, -133 lines) Patch
M Source/core/layout/compositing/CompositedDeprecatedPaintLayerMapping.cpp View 1 chunk +6 lines, -6 lines 0 comments Download
M Source/core/layout/svg/LayoutSVGResourceClipper.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/paint/BoxClipper.cpp View 2 chunks +6 lines, -7 lines 0 comments Download
M Source/core/paint/CompositingRecorder.cpp View 1 chunk +4 lines, -4 lines 0 comments Download
M Source/core/paint/DisplayItemListPaintTest.cpp View 1 chunk +6 lines, -0 lines 0 comments Download
M Source/core/paint/FilterPainter.cpp View 2 chunks +5 lines, -6 lines 0 comments Download
M Source/core/paint/FloatClipRecorder.cpp View 2 chunks +4 lines, -4 lines 0 comments Download
M Source/core/paint/LayerClipRecorder.cpp View 2 chunks +6 lines, -6 lines 0 comments Download
M Source/core/paint/LayerFixedPositionRecorder.cpp View 2 chunks +16 lines, -8 lines 0 comments Download
M Source/core/paint/RoundedInnerRectClipper.cpp View 2 chunks +10 lines, -11 lines 0 comments Download
M Source/core/paint/SVGClipPainter.cpp View 2 chunks +6 lines, -5 lines 0 comments Download
M Source/core/paint/SVGMaskPainter.cpp View 3 chunks +6 lines, -6 lines 0 comments Download
M Source/core/paint/ScrollRecorder.cpp View 2 chunks +4 lines, -4 lines 0 comments Download
M Source/core/paint/SubtreeRecorder.cpp View 2 chunks +6 lines, -3 lines 0 comments Download
M Source/core/paint/Transform3DRecorder.cpp View 2 chunks +4 lines, -4 lines 0 comments Download
M Source/core/paint/TransformRecorder.cpp View 2 chunks +4 lines, -4 lines 0 comments Download
M Source/platform/blink_platform.gypi View 1 chunk +1 line, -0 lines 0 comments Download
M Source/platform/graphics/paint/CachedDisplayItem.h View 1 chunk +3 lines, -1 line 0 comments Download
A Source/platform/graphics/paint/CachedDisplayItem.cpp View 1 2 1 chunk +18 lines, -0 lines 0 comments Download
M Source/platform/graphics/paint/ClipDisplayItem.h View 2 chunks +2 lines, -0 lines 0 comments Download
M Source/platform/graphics/paint/ClipDisplayItem.cpp View 3 chunks +15 lines, -0 lines 0 comments Download
M Source/platform/graphics/paint/ClipPathDisplayItem.h View 2 chunks +6 lines, -2 lines 0 comments Download
M Source/platform/graphics/paint/ClipPathDisplayItem.cpp View 3 chunks +13 lines, -0 lines 0 comments Download
M Source/platform/graphics/paint/ClipPathRecorder.cpp View 1 chunk +4 lines, -4 lines 0 comments Download
M Source/platform/graphics/paint/ClipRecorder.cpp View 2 chunks +4 lines, -4 lines 0 comments Download
M Source/platform/graphics/paint/CompositingDisplayItem.h View 2 chunks +2 lines, -0 lines 0 comments Download
M Source/platform/graphics/paint/CompositingDisplayItem.cpp View 3 chunks +15 lines, -0 lines 0 comments Download
M Source/platform/graphics/paint/DisplayItem.h View 4 chunks +27 lines, -0 lines 0 comments Download
M Source/platform/graphics/paint/DisplayItemList.h View 1 chunk +5 lines, -1 line 0 comments Download
M Source/platform/graphics/paint/DisplayItemList.cpp View 2 chunks +12 lines, -12 lines 0 comments Download
M Source/platform/graphics/paint/DisplayItemListTest.cpp View 2 chunks +7 lines, -0 lines 0 comments Download
M Source/platform/graphics/paint/DisplayItemTransformTreeBuilderTest.cpp View 2 chunks +9 lines, -1 line 0 comments Download
M Source/platform/graphics/paint/DisplayItems.h View 1 2 3 6 chunks +55 lines, -11 lines 0 comments Download
M Source/platform/graphics/paint/DisplayItems.cpp View 2 chunks +65 lines, -8 lines 0 comments Download
M Source/platform/graphics/paint/DrawingDisplayItem.h View 1 chunk +1 line, -0 lines 0 comments Download
M Source/platform/graphics/paint/DrawingDisplayItem.cpp View 2 chunks +8 lines, -0 lines 0 comments Download
M Source/platform/graphics/paint/DrawingRecorder.cpp View 1 chunk +5 lines, -4 lines 0 comments Download
M Source/platform/graphics/paint/FilterDisplayItem.h View 2 chunks +3 lines, -1 line 0 comments Download
M Source/platform/graphics/paint/FilterDisplayItem.cpp View 3 chunks +16 lines, -0 lines 0 comments Download
M Source/platform/graphics/paint/FixedPositionContainerDisplayItem.h View 2 chunks +2 lines, -0 lines 0 comments Download
M Source/platform/graphics/paint/FixedPositionContainerDisplayItem.cpp View 2 chunks +13 lines, -0 lines 0 comments Download
M Source/platform/graphics/paint/FixedPositionDisplayItem.h View 2 chunks +2 lines, -0 lines 0 comments Download
M Source/platform/graphics/paint/FixedPositionDisplayItem.cpp View 2 chunks +13 lines, -0 lines 0 comments Download
M Source/platform/graphics/paint/FloatClipDisplayItem.h View 2 chunks +2 lines, -0 lines 0 comments Download
M Source/platform/graphics/paint/FloatClipDisplayItem.cpp View 3 chunks +13 lines, -0 lines 0 comments Download
M Source/platform/graphics/paint/ScrollDisplayItem.h View 2 chunks +2 lines, -0 lines 0 comments Download
M Source/platform/graphics/paint/ScrollDisplayItem.cpp View 3 chunks +13 lines, -0 lines 0 comments Download
M Source/platform/graphics/paint/SubtreeDisplayItem.h View 3 chunks +6 lines, -3 lines 0 comments Download
M Source/platform/graphics/paint/SubtreeDisplayItem.cpp View 1 chunk +23 lines, -1 line 0 comments Download
M Source/platform/graphics/paint/Transform3DDisplayItem.h View 2 chunks +2 lines, -0 lines 0 comments Download
M Source/platform/graphics/paint/Transform3DDisplayItem.cpp View 3 chunks +13 lines, -0 lines 0 comments Download
M Source/platform/graphics/paint/TransformDisplayItem.h View 2 chunks +2 lines, -0 lines 0 comments Download
M Source/platform/graphics/paint/TransformDisplayItem.cpp View 3 chunks +13 lines, -0 lines 0 comments Download

Powered by Google App Engine
This is Rietveld 408576698