summaryrefslogtreecommitdiff
path: root/src/mbgl/renderer/buckets/raster_bucket.hpp
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2019-03-01 10:00:43 +0100
committerKonstantin Käfer <mail@kkaefer.com>2019-03-06 16:12:51 +0100
commit63e81b9aa8ad1a96e47a296db57e33c866315bee (patch)
tree5af815b305e67ef229984a5c2214da2985e9a2df /src/mbgl/renderer/buckets/raster_bucket.hpp
parent500080ea6489bf7208859ed9bcfeefff16b301ad (diff)
downloadqtlocation-mapboxgl-63e81b9aa8ad1a96e47a296db57e33c866315bee.tar.gz
[core] move VertexVector/IndexVector to gfx namespace
Diffstat (limited to 'src/mbgl/renderer/buckets/raster_bucket.hpp')
-rw-r--r--src/mbgl/renderer/buckets/raster_bucket.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mbgl/renderer/buckets/raster_bucket.hpp b/src/mbgl/renderer/buckets/raster_bucket.hpp
index 8cf71d5234..d610548411 100644
--- a/src/mbgl/renderer/buckets/raster_bucket.hpp
+++ b/src/mbgl/renderer/buckets/raster_bucket.hpp
@@ -32,8 +32,8 @@ public:
// Bucket specific vertices are used for Image Sources only
// Raster Tile Sources use the default buffers from Painter
- gl::VertexVector<RasterLayoutVertex> vertices;
- gl::IndexVector<gfx::Triangles> indices;
+ gfx::VertexVector<RasterLayoutVertex> vertices;
+ gfx::IndexVector<gfx::Triangles> indices;
SegmentVector<RasterAttributes> segments;
optional<gl::VertexBuffer<RasterLayoutVertex>> vertexBuffer;