summaryrefslogtreecommitdiff
path: root/src/mbgl/renderer/render_static_data.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/renderer/render_static_data.cpp')
-rw-r--r--src/mbgl/renderer/render_static_data.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mbgl/renderer/render_static_data.cpp b/src/mbgl/renderer/render_static_data.cpp
index 0b3937ded0..292a0298b0 100644
--- a/src/mbgl/renderer/render_static_data.cpp
+++ b/src/mbgl/renderer/render_static_data.cpp
@@ -3,12 +3,12 @@
namespace mbgl {
-static gl::VertexVector<PositionOnlyLayoutAttributes::Vertex> tileVertices() {
- gl::VertexVector<PositionOnlyLayoutAttributes::Vertex> result;
- result.emplace_back(PositionOnlyLayoutAttributes::Vertex({{{ 0, 0 }}}));
- result.emplace_back(PositionOnlyLayoutAttributes::Vertex({{{ util::EXTENT, 0 }}}));
- result.emplace_back(PositionOnlyLayoutAttributes::Vertex({{{ 0, util::EXTENT }}}));
- result.emplace_back(PositionOnlyLayoutAttributes::Vertex({{{ util::EXTENT, util::EXTENT }}}));
+static gl::VertexVector<gfx::Vertex<PositionOnlyLayoutAttributes>> tileVertices() {
+ gl::VertexVector<gfx::Vertex<PositionOnlyLayoutAttributes>> result;
+ result.emplace_back(gfx::Vertex<PositionOnlyLayoutAttributes>({{{ 0, 0 }}}));
+ result.emplace_back(gfx::Vertex<PositionOnlyLayoutAttributes>({{{ util::EXTENT, 0 }}}));
+ result.emplace_back(gfx::Vertex<PositionOnlyLayoutAttributes>({{{ 0, util::EXTENT }}}));
+ result.emplace_back(gfx::Vertex<PositionOnlyLayoutAttributes>({{{ util::EXTENT, util::EXTENT }}}));
return result;
}