blob: 58786f32afd6bdae5db1087d2c2cdb12002b5489 (
plain)
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
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef mozilla_layers_PotentialCheckerboardDurationTracker_h
#define mozilla_layers_PotentialCheckerboardDurationTracker_h
#include "mozilla/TimeStamp.h"
namespace mozilla {
namespace layers {
/**
* This class allows the owner to track the duration of time considered
* "potentially checkerboarding". This is the union of two possibly-intersecting
* sets of time periods. The first set is that in which checkerboarding was
* actually happening, since by definition it could potentially be happening.
* The second set is that in which the APZC is actively transforming content
* in the compositor, since it could potentially transform it so as to display
* checkerboarding to the user.
* The caller of this class calls the appropriate methods to indicate the start
* and stop of these two sets, and this class manages accumulating the union
* of the various durations.
*/
class PotentialCheckerboardDurationTracker {
public:
PotentialCheckerboardDurationTracker();
/**
* This should be called if checkerboarding is encountered. It can be called
* multiple times during a checkerboard event.
*/
void CheckerboardSeen();
/**
* This should be called when checkerboarding is done. It must have been
* preceded by one or more calls to CheckerboardSeen().
*/
void CheckerboardDone(bool aRecordTelemetry);
/**
* This should be called at composition time, to indicate if the APZC is in
* a transforming state or not.
*/
void InTransform(bool aInTransform, bool aRecordTelemetry);
private:
bool Tracking() const;
private:
bool mInCheckerboard;
bool mInTransform;
TimeStamp mCurrentPeriodStart;
};
} // namespace layers
} // namespace mozilla
#endif // mozilla_layers_PotentialCheckerboardDurationTracker_h
|