| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "core/paint/SVGContainerPainter.h" | 5 #include "core/paint/SVGContainerPainter.h" |
| 6 | 6 |
| 7 #include "core/layout/svg/LayoutSVGContainer.h" | 7 #include "core/layout/svg/LayoutSVGContainer.h" |
| 8 #include "core/layout/svg/LayoutSVGViewportContainer.h" | 8 #include "core/layout/svg/LayoutSVGViewportContainer.h" |
| 9 #include "core/layout/svg/SVGLayoutSupport.h" | 9 #include "core/layout/svg/SVGLayoutSupport.h" |
| 10 #include "core/paint/FloatClipRecorder.h" | 10 #include "core/paint/FloatClipRecorder.h" |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 FloatRect viewport = m_layoutSVGContainer.localToParentTransform().i
nverse().mapRect(toLayoutSVGViewportContainer(m_layoutSVGContainer).viewport()); | 41 FloatRect viewport = m_layoutSVGContainer.localToParentTransform().i
nverse().mapRect(toLayoutSVGViewportContainer(m_layoutSVGContainer).viewport()); |
| 42 clipRecorder.emplace(paintInfoBeforeFiltering.context, m_layoutSVGCo
ntainer, paintInfoBeforeFiltering.phase, viewport); | 42 clipRecorder.emplace(paintInfoBeforeFiltering.context, m_layoutSVGCo
ntainer, paintInfoBeforeFiltering.phase, viewport); |
| 43 } | 43 } |
| 44 | 44 |
| 45 SVGPaintContext paintContext(m_layoutSVGContainer, paintInfoBeforeFilter
ing); | 45 SVGPaintContext paintContext(m_layoutSVGContainer, paintInfoBeforeFilter
ing); |
| 46 bool continueRendering = true; | 46 bool continueRendering = true; |
| 47 if (paintContext.paintInfo().phase == PaintPhaseForeground) | 47 if (paintContext.paintInfo().phase == PaintPhaseForeground) |
| 48 continueRendering = paintContext.applyClipMaskAndFilterIfNecessary()
; | 48 continueRendering = paintContext.applyClipMaskAndFilterIfNecessary()
; |
| 49 | 49 |
| 50 if (continueRendering) { | 50 if (continueRendering) { |
| 51 paintContext.paintInfo().updatePaintingRootForChildren(&m_layoutSVGC
ontainer); | |
| 52 for (LayoutObject* child = m_layoutSVGContainer.firstChild(); child;
child = child->nextSibling()) | 51 for (LayoutObject* child = m_layoutSVGContainer.firstChild(); child;
child = child->nextSibling()) |
| 53 child->paint(paintContext.paintInfo(), IntPoint()); | 52 child->paint(paintContext.paintInfo(), IntPoint()); |
| 54 } | 53 } |
| 55 } | 54 } |
| 56 | 55 |
| 57 if (paintInfoBeforeFiltering.phase != PaintPhaseForeground) | 56 if (paintInfoBeforeFiltering.phase != PaintPhaseForeground) |
| 58 return; | 57 return; |
| 59 | 58 |
| 60 if (m_layoutSVGContainer.style()->outlineWidth() && m_layoutSVGContainer.sty
le()->visibility() == VISIBLE) { | 59 if (m_layoutSVGContainer.style()->outlineWidth() && m_layoutSVGContainer.sty
le()->visibility() == VISIBLE) { |
| 61 PaintInfo outlinePaintInfo(paintInfoBeforeFiltering); | 60 PaintInfo outlinePaintInfo(paintInfoBeforeFiltering); |
| 62 outlinePaintInfo.phase = PaintPhaseSelfOutlineOnly; | 61 outlinePaintInfo.phase = PaintPhaseSelfOutlineOnly; |
| 63 ObjectPainter(m_layoutSVGContainer).paintOutline(outlinePaintInfo, Layou
tPoint(boundingBox.location())); | 62 ObjectPainter(m_layoutSVGContainer).paintOutline(outlinePaintInfo, Layou
tPoint(boundingBox.location())); |
| 64 } | 63 } |
| 65 | 64 |
| 66 if (paintInfoBeforeFiltering.isPrinting()) | 65 if (paintInfoBeforeFiltering.isPrinting()) |
| 67 ObjectPainter(m_layoutSVGContainer).addPDFURLRectIfNeeded(paintInfoBefor
eFiltering, LayoutPoint()); | 66 ObjectPainter(m_layoutSVGContainer).addPDFURLRectIfNeeded(paintInfoBefor
eFiltering, LayoutPoint()); |
| 68 } | 67 } |
| 69 | 68 |
| 70 } // namespace blink | 69 } // namespace blink |
| OLD | NEW |