| 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 11 matching lines...) Expand all Loading... |
| 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/layout/svg/SVGLayoutSupport.h" | 25 #include "core/layout/svg/SVGLayoutSupport.h" |
| 26 #include "core/layout/svg/SVGResources.h" | 26 #include "core/layout/svg/SVGResources.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/PaintController.h" |
| 33 #include "platform/graphics/paint/SkPictureBuilder.h" | 33 #include "platform/graphics/paint/SkPictureBuilder.h" |
| 34 #include "third_party/skia/include/core/SkPicture.h" | 34 #include "third_party/skia/include/core/SkPicture.h" |
| 35 | 35 |
| 36 namespace blink { | 36 namespace blink { |
| 37 | 37 |
| 38 struct PatternData { | 38 struct PatternData { |
| 39 WTF_MAKE_FAST_ALLOCATED(PatternData); | 39 WTF_MAKE_FAST_ALLOCATED(PatternData); |
| 40 public: | 40 public: |
| 41 RefPtr<Pattern> pattern; | 41 RefPtr<Pattern> pattern; |
| 42 AffineTransform transform; | 42 AffineTransform transform; |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 { | 200 { |
| 201 TransformRecorder transformRecorder(pictureBuilder.context(), *patternLa
youtObject, tileTransform); | 201 TransformRecorder transformRecorder(pictureBuilder.context(), *patternLa
youtObject, tileTransform); |
| 202 for (LayoutObject* child = patternLayoutObject->firstChild(); child; chi
ld = child->nextSibling()) | 202 for (LayoutObject* child = patternLayoutObject->firstChild(); child; chi
ld = child->nextSibling()) |
| 203 SVGPaintContext::paintSubtree(&pictureBuilder.context(), child); | 203 SVGPaintContext::paintSubtree(&pictureBuilder.context(), child); |
| 204 } | 204 } |
| 205 | 205 |
| 206 return pictureBuilder.endRecording(); | 206 return pictureBuilder.endRecording(); |
| 207 } | 207 } |
| 208 | 208 |
| 209 } | 209 } |
| OLD | NEW |