summaryrefslogtreecommitdiff
path: root/include/mbgl/renderer/frame_history.hpp
blob: a5dbe21bcae4a39cd36dc7bcd007d72976ff712c (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
#ifndef MBGL_RENDERER_FRAME_HISTORY
#define MBGL_RENDERER_FRAME_HISTORY

#include <deque>
#include <cassert>
#include <cmath>

#include <mbgl/platform/platform.hpp>
#include <mbgl/util/time.hpp>

namespace mbgl {

struct FrameSnapshot {
    explicit inline FrameSnapshot(timestamp t, float z) : t(t), z(z) {}
    float t;
    float z;
};

class FrameHistory {
public:
    // Record frame history that will be used to calculate fading params
    void record(timestamp now, float zoom);

    bool needsAnimation(timestamp duration) const;

public:
    std::deque<FrameSnapshot> history;
};

}

#endif