| 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 * Copyright (C) 2013 Intel Corporation. All rights reserved. | 3 * Copyright (C) 2013 Intel Corporation. All rights reserved. |
| 4 * | 4 * |
| 5 * Portions are Copyright (C) 1998 Netscape Communications Corporation. | 5 * Portions are Copyright (C) 1998 Netscape Communications Corporation. |
| 6 * | 6 * |
| 7 * Other contributors: | 7 * Other contributors: |
| 8 * Robert O'Callahan <roc+@cs.cmu.edu> | 8 * Robert O'Callahan <roc+@cs.cmu.edu> |
| 9 * David Baron <dbaron@fas.harvard.edu> | 9 * David Baron <dbaron@fas.harvard.edu> |
| 10 * Christian Biesinger <cbiesinger@web.de> | 10 * Christian Biesinger <cbiesinger@web.de> |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 PaintLayerPaintingCompositingForegroundPhase = 1 << 5, | 63 PaintLayerPaintingCompositingForegroundPhase = 1 << 5, |
| 64 PaintLayerPaintingCompositingMaskPhase = 1 << 6, | 64 PaintLayerPaintingCompositingMaskPhase = 1 << 6, |
| 65 PaintLayerPaintingCompositingScrollingPhase = 1 << 7, | 65 PaintLayerPaintingCompositingScrollingPhase = 1 << 7, |
| 66 PaintLayerPaintingOverflowContents = 1 << 8, | 66 PaintLayerPaintingOverflowContents = 1 << 8, |
| 67 PaintLayerPaintingRootBackgroundOnly = 1 << 9, | 67 PaintLayerPaintingRootBackgroundOnly = 1 << 9, |
| 68 PaintLayerPaintingSkipRootBackground = 1 << 10, | 68 PaintLayerPaintingSkipRootBackground = 1 << 10, |
| 69 PaintLayerPaintingChildClippingMaskPhase = 1 << 11, | 69 PaintLayerPaintingChildClippingMaskPhase = 1 << 11, |
| 70 PaintLayerPaintingAncestorClippingMaskPhase = 1 << 12, | 70 PaintLayerPaintingAncestorClippingMaskPhase = 1 << 12, |
| 71 PaintLayerPaintingRenderingClipPathAsMask = 1 << 13, | 71 PaintLayerPaintingRenderingClipPathAsMask = 1 << 13, |
| 72 PaintLayerPaintingCompositingDecorationPhase = 1 << 14, | 72 PaintLayerPaintingCompositingDecorationPhase = 1 << 14, |
| 73 PaintLayerPaintingRenderingResourceSubtree = 1 << 15, |
| 73 PaintLayerPaintingCompositingAllPhases = | 74 PaintLayerPaintingCompositingAllPhases = |
| 74 (PaintLayerPaintingCompositingBackgroundPhase | | 75 (PaintLayerPaintingCompositingBackgroundPhase | |
| 75 PaintLayerPaintingCompositingForegroundPhase | | 76 PaintLayerPaintingCompositingForegroundPhase | |
| 76 PaintLayerPaintingCompositingMaskPhase | | 77 PaintLayerPaintingCompositingMaskPhase | |
| 77 PaintLayerPaintingCompositingDecorationPhase) | 78 PaintLayerPaintingCompositingDecorationPhase) |
| 78 }; | 79 }; |
| 79 | 80 |
| 80 typedef unsigned PaintLayerFlags; | 81 typedef unsigned PaintLayerFlags; |
| 81 | 82 |
| 82 struct PaintLayerPaintingInfo { | 83 struct PaintLayerPaintingInfo { |
| (...skipping 19 matching lines...) Expand all Loading... |
| 102 bool clipToDirtyRect; | 103 bool clipToDirtyRect; |
| 103 bool ancestorHasClipPathClipping; | 104 bool ancestorHasClipPathClipping; |
| 104 | 105 |
| 105 private: | 106 private: |
| 106 const GlobalPaintFlags m_globalPaintFlags; | 107 const GlobalPaintFlags m_globalPaintFlags; |
| 107 }; | 108 }; |
| 108 | 109 |
| 109 } // namespace blink | 110 } // namespace blink |
| 110 | 111 |
| 111 #endif // PaintLayerPaintingInfo_h | 112 #endif // PaintLayerPaintingInfo_h |
| OLD | NEW |