OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006 Alexander Kellett <lypanov@kde.org> | 2 * Copyright (C) 2006 Alexander Kellett <lypanov@kde.org> |
3 * Copyright (C) 2006 Apple Computer, Inc. | 3 * Copyright (C) 2006 Apple Computer, Inc. |
4 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org> | 4 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org> |
5 * Copyright (C) 2007, 2008, 2009 Rob Buis <buis@kde.org> | 5 * Copyright (C) 2007, 2008, 2009 Rob Buis <buis@kde.org> |
6 * Copyright (C) 2009 Google, Inc. | 6 * Copyright (C) 2009 Google, Inc. |
7 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> | 7 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> |
8 * Copyright (C) 2010 Patrick Gansterer <paroga@paroga.com> | 8 * Copyright (C) 2010 Patrick Gansterer <paroga@paroga.com> |
9 * | 9 * |
10 * This library is free software; you can redistribute it and/or | 10 * This library is free software; you can redistribute it and/or |
(...skipping 11 matching lines...) Expand all Loading... |
22 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 22 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
23 * Boston, MA 02110-1301, USA. | 23 * Boston, MA 02110-1301, USA. |
24 */ | 24 */ |
25 | 25 |
26 #include "config.h" | 26 #include "config.h" |
27 | 27 |
28 #if ENABLE(SVG) | 28 #if ENABLE(SVG) |
29 #include "RenderSVGImage.h" | 29 #include "RenderSVGImage.h" |
30 | 30 |
31 #include "Attr.h" | 31 #include "Attr.h" |
32 #include "FloatConversion.h" | |
33 #include "LayoutRepainter.h" | 32 #include "LayoutRepainter.h" |
34 #include "PointerEventsHitRules.h" | 33 #include "PointerEventsHitRules.h" |
35 #include "RenderImageResource.h" | 34 #include "RenderImageResource.h" |
36 #include "RenderLayer.h" | 35 #include "RenderLayer.h" |
37 #include "RenderSVGResourceContainer.h" | 36 #include "RenderSVGResourceContainer.h" |
38 #include "RenderSVGResourceFilter.h" | 37 #include "RenderSVGResourceFilter.h" |
39 #include "SVGImageElement.h" | 38 #include "SVGImageElement.h" |
40 #include "SVGLength.h" | 39 #include "SVGLength.h" |
41 #include "SVGPreserveAspectRatio.h" | 40 #include "SVGPreserveAspectRatio.h" |
42 #include "SVGRenderingContext.h" | 41 #include "SVGRenderingContext.h" |
43 #include "SVGResources.h" | 42 #include "SVGResources.h" |
44 #include "SVGResourcesCache.h" | 43 #include "SVGResourcesCache.h" |
| 44 #include "core/platform/FloatConversion.h" |
45 #include "core/platform/graphics/FloatQuad.h" | 45 #include "core/platform/graphics/FloatQuad.h" |
46 #include "core/platform/graphics/GraphicsContext.h" | 46 #include "core/platform/graphics/GraphicsContext.h" |
47 | 47 |
48 namespace WebCore { | 48 namespace WebCore { |
49 | 49 |
50 RenderSVGImage::RenderSVGImage(SVGImageElement* impl) | 50 RenderSVGImage::RenderSVGImage(SVGImageElement* impl) |
51 : RenderSVGModelObject(impl) | 51 : RenderSVGModelObject(impl) |
52 , m_needsBoundariesUpdate(true) | 52 , m_needsBoundariesUpdate(true) |
53 , m_needsTransformUpdate(true) | 53 , m_needsTransformUpdate(true) |
54 , m_imageResource(RenderImageResource::create()) | 54 , m_imageResource(RenderImageResource::create()) |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 { | 210 { |
211 // this is called from paint() after the localTransform has already been app
lied | 211 // this is called from paint() after the localTransform has already been app
lied |
212 IntRect contentRect = enclosingIntRect(repaintRectInLocalCoordinates()); | 212 IntRect contentRect = enclosingIntRect(repaintRectInLocalCoordinates()); |
213 if (!contentRect.isEmpty()) | 213 if (!contentRect.isEmpty()) |
214 rects.append(contentRect); | 214 rects.append(contentRect); |
215 } | 215 } |
216 | 216 |
217 } // namespace WebCore | 217 } // namespace WebCore |
218 | 218 |
219 #endif // ENABLE(SVG) | 219 #endif // ENABLE(SVG) |
OLD | NEW |