1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
// Copyright 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CC_HEADS_UP_DISPLAY_LAYER_IMPL_H_
#define CC_HEADS_UP_DISPLAY_LAYER_IMPL_H_
#include "base/memory/scoped_ptr.h"
#include "base/time.h"
#include "cc/cc_export.h"
#include "cc/font_atlas.h"
#include "cc/layer_impl.h"
#include "cc/scoped_resource.h"
class SkCanvas;
class SkPaint;
struct SkRect;
namespace cc {
class DebugRectHistory;
class FontAtlas;
class FrameRateCounter;
class PaintTimeCounter;
class CC_EXPORT HeadsUpDisplayLayerImpl : public LayerImpl {
public:
static scoped_ptr<HeadsUpDisplayLayerImpl> create(LayerTreeImpl* treeImpl, int id)
{
return make_scoped_ptr(new HeadsUpDisplayLayerImpl(treeImpl, id));
}
virtual ~HeadsUpDisplayLayerImpl();
void setFontAtlas(scoped_ptr<FontAtlas>);
virtual void willDraw(ResourceProvider*) OVERRIDE;
virtual void appendQuads(QuadSink&, AppendQuadsData&) OVERRIDE;
void updateHudTexture(ResourceProvider*);
virtual void didDraw(ResourceProvider*) OVERRIDE;
virtual void didLoseOutputSurface() OVERRIDE;
virtual bool layerIsAlwaysDamaged() const OVERRIDE;
private:
struct Graph {
Graph(double indicatorValue, double startUpperBound);
// Eases the upper bound, which limits what is currently visible in the graph,
// so that the graph always scales to either it's max or defaultUpperBound.
static double updateUpperBound(Graph*);
double value;
double min;
double max;
double currentUpperBound;
const double defaultUpperBound;
const double indicator;
};
HeadsUpDisplayLayerImpl(LayerTreeImpl* treeImpl, int id);
virtual const char* layerTypeAsString() const OVERRIDE;
void drawHudContents(SkCanvas*);
void drawTextLeftAligned(SkCanvas*, SkPaint*, const SkRect& bounds, const std::string& text);
void drawTextRightAligned(SkCanvas*, SkPaint*, const SkRect& bounds, const std::string& text);
void drawGraphBackground(SkCanvas*, SkPaint*, const SkRect& bounds);
void drawGraphLines(SkCanvas*, SkPaint*, const SkRect& bounds, const Graph&);
int drawFPSDisplay(SkCanvas*, FrameRateCounter*, const int& top);
int drawPaintTimeDisplay(SkCanvas*, PaintTimeCounter*, const int& top);
void drawDebugRects(SkCanvas*, DebugRectHistory*);
scoped_ptr<FontAtlas> m_fontAtlas;
scoped_ptr<ScopedResource> m_hudTexture;
scoped_ptr<SkCanvas> m_hudCanvas;
Graph m_fpsGraph;
Graph m_paintTimeGraph;
base::TimeTicks m_timeOfLastGraphUpdate;
};
} // namespace cc
#endif // CC_HEADS_UP_DISPLAY_LAYER_IMPL_H_
|