OLD | NEW |
1 | 1 |
2 /* | 2 /* |
3 * Copyright 2012 Google Inc. | 3 * Copyright 2012 Google Inc. |
4 * | 4 * |
5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
7 */ | 7 */ |
8 | 8 |
9 #ifndef TimerData_DEFINED | 9 #ifndef TimerData_DEFINED |
10 #define TimerData_DEFINED | 10 #define TimerData_DEFINED |
11 | 11 |
| 12 #include "SkJSONCPP.h" |
12 #include "SkString.h" | 13 #include "SkString.h" |
13 #include "SkTemplates.h" | 14 #include "SkTemplates.h" |
14 | 15 |
15 | 16 |
16 class BenchTimer; | 17 class BenchTimer; |
17 | 18 |
18 class TimerData { | 19 class TimerData { |
19 public: | 20 public: |
20 /** | 21 /** |
21 * Constructs a TimerData to hold at most maxNumTimings sets of elapsed time
r values. | 22 * Constructs a TimerData to hold at most maxNumTimings sets of elapsed time
r values. |
(...skipping 29 matching lines...) Expand all Loading... |
51 * @param the name of the config being timed (prepended to results string) | 52 * @param the name of the config being timed (prepended to results string) |
52 * @param timerFlags bitfield of TimerFlags values indicating which timers s
hould be reported. | 53 * @param timerFlags bitfield of TimerFlags values indicating which timers s
hould be reported. |
53 * @param itersPerTiming the number of test/bench iterations that correspond
to each | 54 * @param itersPerTiming the number of test/bench iterations that correspond
to each |
54 * appendTimes() call, 1 when appendTimes is called for each iteratio
n. | 55 * appendTimes() call, 1 when appendTimes is called for each iteratio
n. |
55 */ | 56 */ |
56 SkString getResult(const char* doubleFormat, | 57 SkString getResult(const char* doubleFormat, |
57 Result result, | 58 Result result, |
58 const char* configName, | 59 const char* configName, |
59 uint32_t timerFlags, | 60 uint32_t timerFlags, |
60 int itersPerTiming = 1); | 61 int itersPerTiming = 1); |
| 62 Json::Value getJSON(uint32_t timerFlags, |
| 63 Result result, |
| 64 int itersPerTiming = 1); |
61 | 65 |
62 private: | 66 private: |
63 int fMaxNumTimings; | 67 int fMaxNumTimings; |
64 int fCurrTiming; | 68 int fCurrTiming; |
65 | 69 |
66 SkAutoTArray<double> fWallTimes; | 70 SkAutoTArray<double> fWallTimes; |
67 SkAutoTArray<double> fTruncatedWallTimes; | 71 SkAutoTArray<double> fTruncatedWallTimes; |
68 SkAutoTArray<double> fCpuTimes; | 72 SkAutoTArray<double> fCpuTimes; |
69 SkAutoTArray<double> fTruncatedCpuTimes; | 73 SkAutoTArray<double> fTruncatedCpuTimes; |
70 SkAutoTArray<double> fGpuTimes; | 74 SkAutoTArray<double> fGpuTimes; |
71 }; | 75 }; |
72 | 76 |
73 #endif // TimerData_DEFINED | 77 #endif // TimerData_DEFINED |
OLD | NEW |