diff options
author | Konstantin Käfer <mail@kkaefer.com> | 2015-03-24 10:59:31 +0100 |
---|---|---|
committer | John Firebaugh <john.firebaugh@gmail.com> | 2015-04-28 14:32:19 -0400 |
commit | f272d13dead2b2cccc58d9c55697b9cac3c71e68 (patch) | |
tree | 25ccf6099abd7a54a54ce3ff9b991c2e6c0f362c /include | |
parent | 67fa80f5e98505e781b8afc0d965edb699a1910c (diff) | |
download | qtlocation-mapboxgl-f272d13dead2b2cccc58d9c55697b9cac3c71e68.tar.gz |
move worker to MapContext
Diffstat (limited to 'include')
-rw-r--r-- | include/mbgl/map/map.hpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/mbgl/map/map.hpp b/include/mbgl/map/map.hpp index 582eb430ac..1ec12eb255 100644 --- a/include/mbgl/map/map.hpp +++ b/include/mbgl/map/map.hpp @@ -175,7 +175,6 @@ private: void resize(uint16_t width, uint16_t height, float ratio, uint16_t fbWidth, uint16_t fbHeight); util::ptr<Sprite> getSprite(); - Worker& getWorker(); // Checks if render thread needs to pause void checkForPause(); @@ -215,7 +214,6 @@ private: std::unique_ptr<MapContext> context; private: - std::unique_ptr<Worker> workers; std::thread thread; std::unique_ptr<uv::async> asyncTerminate; std::unique_ptr<uv::async> asyncUpdate; |