summaryrefslogtreecommitdiff
path: root/include/mbgl/renderer/frame_history.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/mbgl/renderer/frame_history.hpp')
-rw-r--r--include/mbgl/renderer/frame_history.hpp40
1 files changed, 0 insertions, 40 deletions
diff --git a/include/mbgl/renderer/frame_history.hpp b/include/mbgl/renderer/frame_history.hpp
deleted file mode 100644
index 61bb59da33..0000000000
--- a/include/mbgl/renderer/frame_history.hpp
+++ /dev/null
@@ -1,40 +0,0 @@
-#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;
-};
-
-struct FadeProperties {
- float fadedist;
- float minfadezoom;
- float maxfadezoom;
- float bump;
-};
-
-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;
- FadeProperties getFadeProperties(timestamp duration);
-
-public:
- std::deque<FrameSnapshot> history;
-};
-
-}
-
-#endif