1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CC_DEBUG_DEBUG_COLORS_H_
6 #define CC_DEBUG_DEBUG_COLORS_H_
8 #include "base/basictypes.h"
9 #include "third_party/skia/include/core/SkColor.h"
17 static SkColor
TiledContentLayerBorderColor();
18 static int TiledContentLayerBorderWidth(const LayerTreeImpl
* tree_impl
);
20 static SkColor
ImageLayerBorderColor();
21 static int ImageLayerBorderWidth(const LayerTreeImpl
* tree_impl
);
23 static SkColor
ContentLayerBorderColor();
24 static int ContentLayerBorderWidth(const LayerTreeImpl
* tree_impl
);
26 static SkColor
MaskingLayerBorderColor();
27 static int MaskingLayerBorderWidth(const LayerTreeImpl
* tree_impl
);
29 static SkColor
ContainerLayerBorderColor();
30 static int ContainerLayerBorderWidth(const LayerTreeImpl
* tree_impl
);
32 static SkColor
SurfaceLayerBorderColor();
33 static int SurfaceLayerBorderWidth(const LayerTreeImpl
* tree_impl
);
35 static SkColor
SurfaceBorderColor();
36 static int SurfaceBorderWidth(const LayerTreeImpl
* tree_impl
);
38 static SkColor
SurfaceReplicaBorderColor();
39 static int SurfaceReplicaBorderWidth(const LayerTreeImpl
* tree_impl
);
41 static SkColor
HighResTileBorderColor();
42 static int HighResTileBorderWidth(const LayerTreeImpl
* tree_impl
);
44 static SkColor
LowResTileBorderColor();
45 static int LowResTileBorderWidth(const LayerTreeImpl
* tree_impl
);
47 static SkColor
ExtraHighResTileBorderColor();
48 static int ExtraHighResTileBorderWidth(const LayerTreeImpl
* tree_impl
);
50 static SkColor
ExtraLowResTileBorderColor();
51 static int ExtraLowResTileBorderWidth(const LayerTreeImpl
* tree_impl
);
53 static SkColor
MissingTileBorderColor();
54 static int MissingTileBorderWidth(const LayerTreeImpl
* tree_impl
);
56 static SkColor
SolidColorTileBorderColor();
57 static int SolidColorTileBorderWidth(const LayerTreeImpl
* tree_impl
);
59 static SkColor
OOMTileBorderColor();
60 static int OOMTileBorderWidth(const LayerTreeImpl
* tree_impl
);
62 static SkColor
DirectPictureBorderColor();
63 static int DirectPictureBorderWidth(const LayerTreeImpl
* tree_impl
);
65 static SkColor
DefaultCheckerboardColor();
66 static SkColor
EvictedTileCheckerboardColor();
67 static SkColor
InvalidatedTileCheckerboardColor();
69 static const int kFadeSteps
= 50;
70 static SkColor
PaintRectBorderColor(int step
);
71 static int PaintRectBorderWidth();
72 static SkColor
PaintRectFillColor(int step
);
74 static SkColor
PropertyChangedRectBorderColor();
75 static int PropertyChangedRectBorderWidth();
76 static SkColor
PropertyChangedRectFillColor();
78 static SkColor
SurfaceDamageRectBorderColor();
79 static int SurfaceDamageRectBorderWidth();
80 static SkColor
SurfaceDamageRectFillColor();
82 static SkColor
ScreenSpaceLayerRectBorderColor();
83 static int ScreenSpaceLayerRectBorderWidth();
84 static SkColor
ScreenSpaceLayerRectFillColor();
86 static SkColor
ScreenSpaceSurfaceReplicaRectBorderColor();
87 static int ScreenSpaceSurfaceReplicaRectBorderWidth();
88 static SkColor
ScreenSpaceSurfaceReplicaRectFillColor();
90 static SkColor
TouchEventHandlerRectBorderColor();
91 static int TouchEventHandlerRectBorderWidth();
92 static SkColor
TouchEventHandlerRectFillColor();
94 static SkColor
WheelEventHandlerRectBorderColor();
95 static int WheelEventHandlerRectBorderWidth();
96 static SkColor
WheelEventHandlerRectFillColor();
98 static SkColor
ScrollEventHandlerRectBorderColor();
99 static int ScrollEventHandlerRectBorderWidth();
100 static SkColor
ScrollEventHandlerRectFillColor();
102 static SkColor
NonFastScrollableRectBorderColor();
103 static int NonFastScrollableRectBorderWidth();
104 static SkColor
NonFastScrollableRectFillColor();
106 static SkColor
LayerAnimationBoundsBorderColor();
107 static int LayerAnimationBoundsBorderWidth();
108 static SkColor
LayerAnimationBoundsFillColor();
110 static SkColor
NonPaintedFillColor();
111 static SkColor
MissingPictureFillColor();
112 static SkColor
MissingResizeInvalidations();
113 static SkColor
PictureBorderColor();
115 static SkColor
HUDBackgroundColor();
116 static SkColor
HUDSeparatorLineColor();
117 static SkColor
HUDIndicatorLineColor();
119 static SkColor
PlatformLayerTreeTextColor();
120 static SkColor
FPSDisplayTextAndGraphColor();
121 static SkColor
MemoryDisplayTextColor();
122 static SkColor
PaintTimeDisplayTextAndGraphColor();
125 DISALLOW_IMPLICIT_CONSTRUCTORS(DebugColors
);
130 #endif // CC_DEBUG_DEBUG_COLORS_H_