| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2003, 2009, 2012 Apple Inc. All rights reserved. | 2 * Copyright (C) 2003, 2009, 2012 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Portions are Copyright (C) 1998 Netscape Communications Corporation. | 4 * Portions are Copyright (C) 1998 Netscape Communications Corporation. |
| 5 * | 5 * |
| 6 * Other contributors: | 6 * Other contributors: |
| 7 * Robert O'Callahan <roc+@cs.cmu.edu> | 7 * Robert O'Callahan <roc+@cs.cmu.edu> |
| 8 * David Baron <dbaron@fas.harvard.edu> | 8 * David Baron <dbaron@fas.harvard.edu> |
| 9 * Christian Biesinger <cbiesinger@web.de> | 9 * Christian Biesinger <cbiesinger@web.de> |
| 10 * Randall Jesup <rjesup@wgate.com> | 10 * Randall Jesup <rjesup@wgate.com> |
| (...skipping 762 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 773 | 773 |
| 774 bool paintsWithTransform(PaintBehavior) const; | 774 bool paintsWithTransform(PaintBehavior) const; |
| 775 | 775 |
| 776 // Returns true if background phase is painted opaque in the given rect. | 776 // Returns true if background phase is painted opaque in the given rect. |
| 777 // The query rect is given in local coordinates. | 777 // The query rect is given in local coordinates. |
| 778 bool backgroundIsKnownToBeOpaqueInRect(const LayoutRect&) const; | 778 bool backgroundIsKnownToBeOpaqueInRect(const LayoutRect&) const; |
| 779 | 779 |
| 780 bool containsDirtyOverlayScrollbars() const { return m_containsDirtyOverlayS
crollbars; } | 780 bool containsDirtyOverlayScrollbars() const { return m_containsDirtyOverlayS
crollbars; } |
| 781 void setContainsDirtyOverlayScrollbars(bool dirtyScrollbars) { m_containsDir
tyOverlayScrollbars = dirtyScrollbars; } | 781 void setContainsDirtyOverlayScrollbars(bool dirtyScrollbars) { m_containsDir
tyOverlayScrollbars = dirtyScrollbars; } |
| 782 | 782 |
| 783 #if ENABLE(CSS_SHADERS) | |
| 784 bool isCSSCustomFilterEnabled() const; | 783 bool isCSSCustomFilterEnabled() const; |
| 785 #endif | |
| 786 | 784 |
| 787 #if ENABLE(CSS_FILTERS) | 785 #if ENABLE(CSS_FILTERS) |
| 788 FilterOperations computeFilterOperations(const RenderStyle*); | 786 FilterOperations computeFilterOperations(const RenderStyle*); |
| 789 bool paintsWithFilters() const; | 787 bool paintsWithFilters() const; |
| 790 bool requiresFullLayerImageForFilters() const; | 788 bool requiresFullLayerImageForFilters() const; |
| 791 FilterEffectRenderer* filterRenderer() const | 789 FilterEffectRenderer* filterRenderer() const |
| 792 { | 790 { |
| 793 RenderLayerFilterInfo* filterInfo = this->filterInfo(); | 791 RenderLayerFilterInfo* filterInfo = this->filterInfo(); |
| 794 return filterInfo ? filterInfo->renderer() : 0; | 792 return filterInfo ? filterInfo->renderer() : 0; |
| 795 } | 793 } |
| (...skipping 514 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1310 | 1308 |
| 1311 } // namespace WebCore | 1309 } // namespace WebCore |
| 1312 | 1310 |
| 1313 #ifndef NDEBUG | 1311 #ifndef NDEBUG |
| 1314 // Outside the WebCore namespace for ease of invocation from gdb. | 1312 // Outside the WebCore namespace for ease of invocation from gdb. |
| 1315 void showLayerTree(const WebCore::RenderLayer*); | 1313 void showLayerTree(const WebCore::RenderLayer*); |
| 1316 void showLayerTree(const WebCore::RenderObject*); | 1314 void showLayerTree(const WebCore::RenderObject*); |
| 1317 #endif | 1315 #endif |
| 1318 | 1316 |
| 1319 #endif // RenderLayer_h | 1317 #endif // RenderLayer_h |
| OLD | NEW |