| OLD | NEW |
| 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 12 matching lines...) Expand all Loading... |
| 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/DisplayItemList.h" |
| 33 #include "platform/graphics/paint/SkPictureBuilder.h" |
| 33 #include "third_party/skia/include/core/SkPicture.h" | 34 #include "third_party/skia/include/core/SkPicture.h" |
| 34 | 35 |
| 35 namespace blink { | 36 namespace blink { |
| 36 | 37 |
| 37 struct PatternData { | 38 struct PatternData { |
| 38 WTF_MAKE_FAST_ALLOCATED(PatternData); | 39 WTF_MAKE_FAST_ALLOCATED(PatternData); |
| 39 public: | 40 public: |
| 40 RefPtr<Pattern> pattern; | 41 RefPtr<Pattern> pattern; |
| 41 AffineTransform transform; | 42 AffineTransform transform; |
| 42 }; | 43 }; |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 | 159 |
| 159 PassRefPtr<const SkPicture> LayoutSVGResourcePattern::asPicture(const FloatRect&
tileBounds, | 160 PassRefPtr<const SkPicture> LayoutSVGResourcePattern::asPicture(const FloatRect&
tileBounds, |
| 160 const AffineTransform& tileTransform) const | 161 const AffineTransform& tileTransform) const |
| 161 { | 162 { |
| 162 ASSERT(!m_shouldCollectPatternAttributes); | 163 ASSERT(!m_shouldCollectPatternAttributes); |
| 163 | 164 |
| 164 AffineTransform contentTransform; | 165 AffineTransform contentTransform; |
| 165 if (attributes().patternContentUnits() == SVGUnitTypes::SVG_UNIT_TYPE_OBJECT
BOUNDINGBOX) | 166 if (attributes().patternContentUnits() == SVGUnitTypes::SVG_UNIT_TYPE_OBJECT
BOUNDINGBOX) |
| 166 contentTransform = tileTransform; | 167 contentTransform = tileTransform; |
| 167 | 168 |
| 168 // Draw the content into a Picture. | 169 FloatRect bounds(FloatPoint(), tileBounds.size()); |
| 169 OwnPtr<DisplayItemList> displayItemList; | 170 SkPictureBuilder pictureBuilder(bounds); |
| 170 if (RuntimeEnabledFeatures::slimmingPaintEnabled()) | |
| 171 displayItemList = DisplayItemList::create(); | |
| 172 GraphicsContext recordingContext(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(pictureBuilder.context(), *patternLa
youtObject, 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(&pictureBuilder.context(), child); |
| 187 } | 184 } |
| 188 | 185 |
| 189 if (displayItemList) | 186 return pictureBuilder.endRecording(); |
| 190 displayItemList->commitNewDisplayItemsAndReplay(recordingContext); | |
| 191 return recordingContext.endRecording(); | |
| 192 } | 187 } |
| 193 | 188 |
| 194 } | 189 } |
| OLD | NEW |