| 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 * Copyright (C) 2012 Zoltan Herczeg <zherczeg@webkit.org>. | 7 * Copyright (C) 2012 Zoltan Herczeg <zherczeg@webkit.org>. |
| 8 * | 8 * |
| 9 * This library is free software; you can redistribute it and/or | 9 * This library is free software; you can redistribute it and/or |
| 10 * modify it under the terms of the GNU Library General Public | 10 * modify it under the terms of the GNU Library General Public |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 bool applyMaskIfNecessary(SVGResources*); | 80 bool applyMaskIfNecessary(SVGResources*); |
| 81 | 81 |
| 82 // Return true if no filtering is necessary or if the filter is successfully
applied. | 82 // Return true if no filtering is necessary or if the filter is successfully
applied. |
| 83 bool applyFilterIfNecessary(SVGResources*); | 83 bool applyFilterIfNecessary(SVGResources*); |
| 84 | 84 |
| 85 bool isIsolationInstalled() const; | 85 bool isIsolationInstalled() const; |
| 86 | 86 |
| 87 LayoutObject* m_object; | 87 LayoutObject* m_object; |
| 88 PaintInfo m_paintInfo; | 88 PaintInfo m_paintInfo; |
| 89 const PaintInfo* m_originalPaintInfo; | 89 const PaintInfo* m_originalPaintInfo; |
| 90 RawPtrWillBeMember<LayoutSVGResourceFilter> m_filter; | 90 LayoutSVGResourceFilter* m_filter; |
| 91 RawPtrWillBeMember<LayoutSVGResourceClipper> m_clipper; | 91 LayoutSVGResourceClipper* m_clipper; |
| 92 SVGClipPainter::ClipperState m_clipperState; | 92 SVGClipPainter::ClipperState m_clipperState; |
| 93 RawPtrWillBeMember<LayoutSVGResourceMasker> m_masker; | 93 LayoutSVGResourceMasker* m_masker; |
| 94 OwnPtr<FloatClipRecorder> m_clipRecorder; | 94 OwnPtr<FloatClipRecorder> m_clipRecorder; |
| 95 OwnPtr<CompositingRecorder> m_compositingRecorder; | 95 OwnPtr<CompositingRecorder> m_compositingRecorder; |
| 96 OwnPtr<ClipPathRecorder> m_clipPathRecorder; | 96 OwnPtr<ClipPathRecorder> m_clipPathRecorder; |
| 97 #if ENABLE(ASSERT) | 97 #if ENABLE(ASSERT) |
| 98 bool m_applyClipMaskAndFilterIfNecessaryCalled; | 98 bool m_applyClipMaskAndFilterIfNecessaryCalled; |
| 99 #endif | 99 #endif |
| 100 }; | 100 }; |
| 101 | 101 |
| 102 } // namespace blink | 102 } // namespace blink |
| 103 | 103 |
| 104 #endif // SVGPaintContext_h | 104 #endif // SVGPaintContext_h |
| OLD | NEW |