diff options
author | Bruno de Oliveira Abinader <bruno@mapbox.com> | 2016-02-17 18:22:03 +0200 |
---|---|---|
committer | Bruno de Oliveira Abinader <bruno@mapbox.com> | 2016-02-18 13:27:35 +0200 |
commit | bfafc360a7257f57999edbcbd484a0e18b40798a (patch) | |
tree | 395a71d338a2c33ae11f2ebd421f4a2706698308 /test | |
parent | 1336e3e30f5bc9bdf4fc9fff516a36df9f0235d7 (diff) | |
download | qtlocation-mapboxgl-bfafc360a7257f57999edbcbd484a0e18b40798a.tar.gz |
[gl] Moved TexturePool to gl namespace
Diffstat (limited to 'test')
-rw-r--r-- | test/style/source.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/style/source.cpp b/test/style/source.cpp index 9b3857fc07..993d827ce1 100644 --- a/test/style/source.cpp +++ b/test/style/source.cpp @@ -12,7 +12,7 @@ #include <mbgl/map/transform.hpp> #include <mbgl/map/map_data.hpp> #include <mbgl/util/worker.hpp> -#include <mbgl/util/texture_pool.hpp> +#include <mbgl/gl/texture_pool.hpp> #include <mbgl/style/style.hpp> #include <mbgl/style/style_update_parameters.hpp> #include <mbgl/layer/line_layer.hpp> @@ -29,7 +29,7 @@ public: Transform transform { view, ConstrainMode::HeightOnly }; TransformState transformState; Worker worker { 1 }; - TexturePool texturePool; + gl::TexturePool texturePool; MapData mapData { MapMode::Still, GLContextMode::Unique, 1.0 }; Style style { mapData }; |