summaryrefslogtreecommitdiff
path: root/src/mbgl/renderer/debug_bucket.hpp
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2016-05-13 15:41:22 +0200
committerKonstantin Käfer <mail@kkaefer.com>2016-05-13 17:24:22 +0200
commitcd65a43855f33555eca5f3e3ad5d37661253209f (patch)
treed83b63f4baeb3672c4909a08b14783c717b74681 /src/mbgl/renderer/debug_bucket.hpp
parentc1dde52c73061a49d576454a9ab4739e72561ca6 (diff)
downloadqtlocation-mapboxgl-cd65a43855f33555eca5f3e3ad5d37661253209f.tar.gz
[core] move from microsecond precision timestamp to integer second precision
Diffstat (limited to 'src/mbgl/renderer/debug_bucket.hpp')
-rw-r--r--src/mbgl/renderer/debug_bucket.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mbgl/renderer/debug_bucket.hpp b/src/mbgl/renderer/debug_bucket.hpp
index e824701fa6..f26b7b79ec 100644
--- a/src/mbgl/renderer/debug_bucket.hpp
+++ b/src/mbgl/renderer/debug_bucket.hpp
@@ -18,16 +18,16 @@ class GLObjectStore;
class DebugBucket : private util::noncopyable {
public:
DebugBucket(const OverscaledTileID& id, TileData::State,
- optional<SystemTimePoint> modified,
- optional<SystemTimePoint> expires,
+ optional<Timestamp> modified,
+ optional<Timestamp> expires,
MapDebugOptions);
void drawLines(PlainShader&, gl::GLObjectStore&);
void drawPoints(PlainShader&, gl::GLObjectStore&);
const TileData::State state;
- const optional<SystemTimePoint> modified;
- const optional<SystemTimePoint> expires;
+ const optional<Timestamp> modified;
+ const optional<Timestamp> expires;
const MapDebugOptions debugMode;
private: