Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /** | 1 /** |
| 2 * Copyright (C) 2007 Rob Buis <buis@kde.org> | 2 * Copyright (C) 2007 Rob Buis <buis@kde.org> |
| 3 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org> | 3 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org> |
| 4 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> | 4 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> |
| 5 * Copyright (C) 2009 Google, Inc. All rights reserved. | 5 * Copyright (C) 2009 Google, Inc. All rights reserved. |
| 6 * Copyright (C) Research In Motion Limited 2010. All rights reserved. | 6 * Copyright (C) Research In Motion Limited 2010. All rights reserved. |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 68 // within the clipping area. Returns false if the transform is singular or | 68 // within the clipping area. Returns false if the transform is singular or |
| 69 // the point is outside the clipping area. | 69 // the point is outside the clipping area. |
| 70 static bool transformToUserSpaceAndCheckClipping(RenderObject*, const Affine Transform& localTransform, const FloatPoint& pointInParent, FloatPoint& localPoi nt); | 70 static bool transformToUserSpaceAndCheckClipping(RenderObject*, const Affine Transform& localTransform, const FloatPoint& pointInParent, FloatPoint& localPoi nt); |
| 71 | 71 |
| 72 static void computeContainerBoundingBoxes(const RenderObject* container, Flo atRect& objectBoundingBox, bool& objectBoundingBoxValid, FloatRect& strokeBoundi ngBox, FloatRect& paintInvalidationBoundingBox); | 72 static void computeContainerBoundingBoxes(const RenderObject* container, Flo atRect& objectBoundingBox, bool& objectBoundingBoxValid, FloatRect& strokeBoundi ngBox, FloatRect& paintInvalidationBoundingBox); |
| 73 | 73 |
| 74 static bool paintInfoIntersectsPaintInvalidationRect(const FloatRect& localP aintInvalidationRect, const AffineTransform& localTransform, const PaintInfo&); | 74 static bool paintInfoIntersectsPaintInvalidationRect(const FloatRect& localP aintInvalidationRect, const AffineTransform& localTransform, const PaintInfo&); |
| 75 | 75 |
| 76 // Important functions used by nearly all SVG renderers centralizing coordin ate transformations / paint invalidation rect calculations | 76 // Important functions used by nearly all SVG renderers centralizing coordin ate transformations / paint invalidation rect calculations |
| 77 static LayoutRect clippedOverflowRectForPaintInvalidation(const RenderObject *, const RenderLayerModelObject* paintInvalidationContainer, const PaintInvalida tionState*); | 77 static LayoutRect clippedOverflowRectForPaintInvalidation(const RenderObject *, const RenderLayerModelObject* paintInvalidationContainer, const PaintInvalida tionState*); |
| 78 static void computeFloatRectForPaintInvalidation(const RenderObject*, const RenderLayerModelObject* paintInvalidationContainer, FloatRect&, const PaintInval idationState*); | 78 static const RenderSVGRoot* mapRectToSVGRootForPaintInvalidation(const Rende rObject*, const FloatRect& localPaintInvalidationRect, LayoutRect&); |
|
pdr.
2014/11/21 08:32:05
Can this return a reference?
fs
2014/11/21 11:23:15
Sure can.
| |
| 79 static void mapLocalToContainer(const RenderObject*, const RenderLayerModelO bject* paintInvalidationContainer, TransformState&, bool* wasFixed = 0, const Pa intInvalidationState* = 0); | 79 static void mapLocalToContainer(const RenderObject*, const RenderLayerModelO bject* paintInvalidationContainer, TransformState&, bool* wasFixed = 0, const Pa intInvalidationState* = 0); |
| 80 static const RenderObject* pushMappingToContainer(const RenderObject*, const RenderLayerModelObject* ancestorToStopAt, RenderGeometryMap&); | 80 static const RenderObject* pushMappingToContainer(const RenderObject*, const RenderLayerModelObject* ancestorToStopAt, RenderGeometryMap&); |
| 81 | 81 |
| 82 // Shared between SVG renderers and resources. | 82 // Shared between SVG renderers and resources. |
| 83 static void applyStrokeStyleToContext(GraphicsContext*, const RenderStyle*, const RenderObject*); | 83 static void applyStrokeStyleToContext(GraphicsContext*, const RenderStyle*, const RenderObject*); |
| 84 static void applyStrokeStyleToStrokeData(StrokeData*, const RenderStyle*, co nst RenderObject*); | 84 static void applyStrokeStyleToStrokeData(StrokeData*, const RenderStyle*, co nst RenderObject*); |
| 85 | 85 |
| 86 // Update the GC state (on |paintInfo.context|) for painting |renderer| | 86 // Update the GC state (on |paintInfo.context|) for painting |renderer| |
| 87 // using |style|. |resourceMode| is used to decide between fill/stroke. | 87 // using |style|. |resourceMode| is used to decide between fill/stroke. |
| 88 // Previous state will be saved (if needed) using |stateSaver|. | 88 // Previous state will be saved (if needed) using |stateSaver|. |
| (...skipping 10 matching lines...) Expand all Loading... | |
| 99 static bool isRenderableTextNode(const RenderObject*); | 99 static bool isRenderableTextNode(const RenderObject*); |
| 100 | 100 |
| 101 private: | 101 private: |
| 102 static void updateObjectBoundingBox(FloatRect& objectBoundingBox, bool& obje ctBoundingBoxValid, RenderObject* other, FloatRect otherBoundingBox); | 102 static void updateObjectBoundingBox(FloatRect& objectBoundingBox, bool& obje ctBoundingBoxValid, RenderObject* other, FloatRect otherBoundingBox); |
| 103 static bool layoutSizeOfNearestViewportChanged(const RenderObject* start); | 103 static bool layoutSizeOfNearestViewportChanged(const RenderObject* start); |
| 104 }; | 104 }; |
| 105 | 105 |
| 106 } // namespace blink | 106 } // namespace blink |
| 107 | 107 |
| 108 #endif // SVGRenderSupport_h | 108 #endif // SVGRenderSupport_h |
| OLD | NEW |