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

Unified Diff: third_party/WebKit/Source/platform/graphics/paint/CompositingRecorder.cpp

Issue 2385123003: Rewrap comments to 80 columns in Source/platform/graphics/paint/. (Closed)
Patch Set: Resync Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/graphics/paint/CompositingRecorder.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/paint/CompositingRecorder.cpp b/third_party/WebKit/Source/platform/graphics/paint/CompositingRecorder.cpp
index b8e7ee76a6d4b2eb0dd86a719d509a1883395a0b..a0cd23cf41232fbfa7fdf28551018e11c25dc962 100644
--- a/third_party/WebKit/Source/platform/graphics/paint/CompositingRecorder.cpp
+++ b/third_party/WebKit/Source/platform/graphics/paint/CompositingRecorder.cpp
@@ -41,10 +41,13 @@ void CompositingRecorder::beginCompositing(GraphicsContext& graphicsContext,
void CompositingRecorder::endCompositing(GraphicsContext& graphicsContext,
const DisplayItemClient& client) {
- // If the end of the current display list is of the form [BeginCompositingDisplayItem] [DrawingDisplayItem],
- // then fold the BeginCompositingDisplayItem into a new DrawingDisplayItem that replaces them both. This allows
- // Skia to optimize for the case when the BeginCompositingDisplayItem represents a simple opacity/color that can be merged into
- // the opacity/color of the drawing. See crbug.com/628831 for more details.
+ // If the end of the current display list is of the form
+ // [BeginCompositingDisplayItem] [DrawingDisplayItem], then fold the
+ // BeginCompositingDisplayItem into a new DrawingDisplayItem that replaces
+ // them both. This allows Skia to optimize for the case when the
+ // BeginCompositingDisplayItem represents a simple opacity/color that can be
+ // merged into the opacity/color of the drawing. See crbug.com/628831 for more
+ // details.
PaintController& paintController = graphicsContext.getPaintController();
const DisplayItem* lastDisplayItem = paintController.lastDisplayItem(0);
const DisplayItem* secondToLastDisplayItem =
@@ -74,10 +77,12 @@ void CompositingRecorder::endCompositing(GraphicsContext& graphicsContext,
paintController
.removeLastDisplayItem(); // Remove the BeginCompositingDisplayItem.
- // The new item cannot be cached, because it is a mutation of the DisplayItem the client thought it was painting.
+ // The new item cannot be cached, because it is a mutation of the
+ // DisplayItem the client thought it was painting.
paintController.beginSkippingCache();
{
- // Replay the new SKPicture into a new DrawingDisplayItem in the original DisplayItemList.
+ // Replay the new SKPicture into a new DrawingDisplayItem in the original
+ // DisplayItemList.
DrawingRecorder newRecorder(graphicsContext, displayItemClient,
displayItemType, cullRect);
pictureBuilder.endRecording()->playback(graphicsContext.canvas());

Powered by Google App Engine
This is Rietveld 408576698