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

Side by Side Diff: Source/core/layout/svg/LayoutSVGResourcePattern.cpp

Issue 1048223002: Add DisplayItemListPictureRecorder (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2006 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) Research In Motion Limited 2010. All rights reserved. 3 * Copyright (C) Research In Motion Limited 2010. All rights reserved.
4 * Copyright 2014 The Chromium Authors. All rights reserved. 4 * Copyright 2014 The Chromium Authors. All rights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 11 matching lines...) Expand all
22 #include "config.h" 22 #include "config.h"
23 #include "core/layout/svg/LayoutSVGResourcePattern.h" 23 #include "core/layout/svg/LayoutSVGResourcePattern.h"
24 24
25 #include "core/dom/ElementTraversal.h" 25 #include "core/dom/ElementTraversal.h"
26 #include "core/layout/svg/SVGLayoutSupport.h" 26 #include "core/layout/svg/SVGLayoutSupport.h"
27 #include "core/paint/SVGPaintContext.h" 27 #include "core/paint/SVGPaintContext.h"
28 #include "core/paint/TransformRecorder.h" 28 #include "core/paint/TransformRecorder.h"
29 #include "core/svg/SVGFitToViewBox.h" 29 #include "core/svg/SVGFitToViewBox.h"
30 #include "core/svg/SVGPatternElement.h" 30 #include "core/svg/SVGPatternElement.h"
31 #include "platform/graphics/GraphicsContext.h" 31 #include "platform/graphics/GraphicsContext.h"
32 #include "platform/graphics/paint/DisplayItemList.h" 32 #include "platform/graphics/paint/DisplayItemListPictureRecorder.h"
33 #include "third_party/skia/include/core/SkPicture.h" 33 #include "third_party/skia/include/core/SkPicture.h"
34 34
35 namespace blink { 35 namespace blink {
36 36
37 struct PatternData { 37 struct PatternData {
38 WTF_MAKE_FAST_ALLOCATED(PatternData); 38 WTF_MAKE_FAST_ALLOCATED(PatternData);
39 public: 39 public:
40 RefPtr<Pattern> pattern; 40 RefPtr<Pattern> pattern;
41 AffineTransform transform; 41 AffineTransform transform;
42 }; 42 };
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 PassRefPtr<const SkPicture> LayoutSVGResourcePattern::asPicture(const FloatRect& tileBounds, 159 PassRefPtr<const SkPicture> LayoutSVGResourcePattern::asPicture(const FloatRect& tileBounds,
160 const AffineTransform& tileTransform) const 160 const AffineTransform& tileTransform) const
161 { 161 {
162 ASSERT(!m_shouldCollectPatternAttributes); 162 ASSERT(!m_shouldCollectPatternAttributes);
163 163
164 AffineTransform contentTransform; 164 AffineTransform contentTransform;
165 if (attributes().patternContentUnits() == SVGUnitTypes::SVG_UNIT_TYPE_OBJECT BOUNDINGBOX) 165 if (attributes().patternContentUnits() == SVGUnitTypes::SVG_UNIT_TYPE_OBJECT BOUNDINGBOX)
166 contentTransform = tileTransform; 166 contentTransform = tileTransform;
167 167
168 // Draw the content into a Picture. 168 // Draw the content into a Picture.
169 OwnPtr<DisplayItemList> displayItemList; 169 DisplayItemListPictureRecorder pictureRecorder(FloatRect(FloatPoint(), tileB ounds.size()));
170 if (RuntimeEnabledFeatures::slimmingPaintEnabled()) 170 GraphicsContext& recordingContext = pictureRecorder.context();
171 displayItemList = DisplayItemList::create();
172 GraphicsContext recordingContext(nullptr, displayItemList.get());
173 recordingContext.beginRecording(FloatRect(FloatPoint(), tileBounds.size()));
174 171
175 ASSERT(attributes().patternContentElement()); 172 ASSERT(attributes().patternContentElement());
176 LayoutSVGResourceContainer* patternLayoutObject = 173 LayoutSVGResourceContainer* patternLayoutObject =
177 toLayoutSVGResourceContainer(attributes().patternContentElement()->layou tObject()); 174 toLayoutSVGResourceContainer(attributes().patternContentElement()->layou tObject());
178 ASSERT(patternLayoutObject); 175 ASSERT(patternLayoutObject);
179 ASSERT(!patternLayoutObject->needsLayout()); 176 ASSERT(!patternLayoutObject->needsLayout());
180 177
181 SubtreeContentTransformScope contentTransformScope(contentTransform); 178 SubtreeContentTransformScope contentTransformScope(contentTransform);
182 179
183 { 180 {
184 TransformRecorder transformRecorder(recordingContext, *patternLayoutObje ct, tileTransform); 181 TransformRecorder transformRecorder(recordingContext, *patternLayoutObje ct, tileTransform);
185 for (LayoutObject* child = patternLayoutObject->firstChild(); child; chi ld = child->nextSibling()) 182 for (LayoutObject* child = patternLayoutObject->firstChild(); child; chi ld = child->nextSibling())
186 SVGPaintContext::paintSubtree(&recordingContext, child); 183 SVGPaintContext::paintSubtree(&recordingContext, child);
187 } 184 }
188 185
189 if (displayItemList) 186 return pictureRecorder.endRecording();
190 displayItemList->replay(&recordingContext);
191 return recordingContext.endRecording();
192 } 187 }
193 188
194 } 189 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698