-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathframeclock.h
70 lines (54 loc) · 1.22 KB
/
frameclock.h
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
#pragma once
#include "viewer/core/time.h"
#include <vector>
namespace core
{
class frameclock
{
public:
template<typename T, typename U>
struct range
{
range()
: m_min()
, m_max()
, m_avg()
, m_current()
, m_elapsed()
{}
void swap(range& other)
{
std::swap(this->minimum, other.minimum);
std::swap(this->maximum, other.maximum);
std::swap(this->average, other.average);
std::swap(this->current, other.current);
std::swap(this->elapsed, other.elapsed);
}
T m_min;
T m_max;
T m_avg;
T m_current;
U m_elapsed;
};
private:
time_point m_time_stamp;
time m_elapsed;
range<time, time> m_time;
range<float, unsigned int> m_freq;
time m_accum;
std::vector<time> m_buffer;
std::vector<time>::size_type m_index;
public:
frameclock(unsigned int sample_depth);
void start();
time restart();
unsigned int sample_depth() const;
time dt() const;
time min() const;
time max() const;
time avg() const;
float fps() const;
private:
void add(const time dt);
};
}