| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 | 47 |
| 48 #include "sky/engine/core/rendering/PaintInfo.h" | 48 #include "sky/engine/core/rendering/PaintInfo.h" |
| 49 #include "sky/engine/platform/geometry/LayoutRect.h" | 49 #include "sky/engine/platform/geometry/LayoutRect.h" |
| 50 | 50 |
| 51 namespace blink { | 51 namespace blink { |
| 52 | 52 |
| 53 class RenderLayer; | 53 class RenderLayer; |
| 54 | 54 |
| 55 enum PaintLayerFlag { | 55 enum PaintLayerFlag { |
| 56 PaintLayerHaveTransparency = 1, | 56 PaintLayerHaveTransparency = 1, |
| 57 PaintLayerAppliedTransform = 1 << 1, | |
| 58 // FIXME(sky): This is unused. Remove it. | 57 // FIXME(sky): This is unused. Remove it. |
| 59 PaintLayerUncachedClipRects = 1 << 2, | 58 PaintLayerUncachedClipRects = 1 << 2, |
| 60 PaintLayerPaintingOverlayScrollbars = 1 << 4, | 59 PaintLayerPaintingOverlayScrollbars = 1 << 4, |
| 61 PaintLayerPaintingCompositingBackgroundPhase = 1 << 5, | 60 PaintLayerPaintingCompositingBackgroundPhase = 1 << 5, |
| 62 PaintLayerPaintingCompositingForegroundPhase = 1 << 6, | 61 PaintLayerPaintingCompositingForegroundPhase = 1 << 6, |
| 63 PaintLayerPaintingCompositingMaskPhase = 1 << 7, | 62 PaintLayerPaintingCompositingMaskPhase = 1 << 7, |
| 64 PaintLayerPaintingCompositingScrollingPhase = 1 << 8, | 63 PaintLayerPaintingCompositingScrollingPhase = 1 << 8, |
| 65 PaintLayerPaintingOverflowContents = 1 << 9, | 64 PaintLayerPaintingOverflowContents = 1 << 9, |
| 66 PaintLayerPaintingCompositingAllPhases = (PaintLayerPaintingCompositingBackg
roundPhase | PaintLayerPaintingCompositingForegroundPhase | PaintLayerPaintingCo
mpositingMaskPhase) | 65 PaintLayerPaintingCompositingAllPhases = (PaintLayerPaintingCompositingBackg
roundPhase | PaintLayerPaintingCompositingForegroundPhase | PaintLayerPaintingCo
mpositingMaskPhase) |
| 67 }; | 66 }; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 83 RenderObject* paintingRoot; // only paint descendants of this object | 82 RenderObject* paintingRoot; // only paint descendants of this object |
| 84 LayoutRect paintDirtyRect; // relative to rootLayer; | 83 LayoutRect paintDirtyRect; // relative to rootLayer; |
| 85 LayoutSize subPixelAccumulation; | 84 LayoutSize subPixelAccumulation; |
| 86 PaintBehavior paintBehavior; | 85 PaintBehavior paintBehavior; |
| 87 bool clipToDirtyRect; | 86 bool clipToDirtyRect; |
| 88 }; | 87 }; |
| 89 | 88 |
| 90 } // namespace blink | 89 } // namespace blink |
| 91 | 90 |
| 92 #endif // SKY_ENGINE_CORE_RENDERING_LAYERPAINTINGINFO_H_ | 91 #endif // SKY_ENGINE_CORE_RENDERING_LAYERPAINTINGINFO_H_ |
| OLD | NEW |