summaryrefslogtreecommitdiff
path: root/src/mbgl/tile/raster_tile.cpp
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2019-03-06 18:40:07 +0100
committerKonstantin Käfer <mail@kkaefer.com>2019-03-12 11:03:54 +0100
commit9b5bbfcbdde1e32fb7c8f152c1a8fb449363e0a9 (patch)
tree1af663376168a70f12201a4bca8060f9490dd895 /src/mbgl/tile/raster_tile.cpp
parenta7f151ab487d656340d4ace415abacf9e8cecbf9 (diff)
downloadqtlocation-mapboxgl-9b5bbfcbdde1e32fb7c8f152c1a8fb449363e0a9.tar.gz
[core] use abstract Context interface where possible
Diffstat (limited to 'src/mbgl/tile/raster_tile.cpp')
-rw-r--r--src/mbgl/tile/raster_tile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mbgl/tile/raster_tile.cpp b/src/mbgl/tile/raster_tile.cpp
index 1346f87ae5..22561ec11d 100644
--- a/src/mbgl/tile/raster_tile.cpp
+++ b/src/mbgl/tile/raster_tile.cpp
@@ -58,7 +58,7 @@ void RasterTile::onError(std::exception_ptr err, const uint64_t resultCorrelatio
observer->onTileError(*this, err);
}
-void RasterTile::upload(gl::Context& context) {
+void RasterTile::upload(gfx::Context& context) {
if (bucket) {
bucket->upload(context);
}