summaryrefslogtreecommitdiff
path: root/src/mbgl/renderer/render_static_data.cpp
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2019-02-28 14:28:58 +0100
committerKonstantin Käfer <mail@kkaefer.com>2019-03-01 09:33:37 +0100
commit95deab32ceadd2bca3912d866e76c6b0f1b931f4 (patch)
tree09a2178cd034d67370cd9b9bc62312fd45f5af0d /src/mbgl/renderer/render_static_data.cpp
parent3f1d754369fe0a12f924c3dd47ad028c98b8e3b7 (diff)
downloadqtlocation-mapboxgl-95deab32ceadd2bca3912d866e76c6b0f1b931f4.tar.gz
[core] extract attribute structs and gl::Vertex to separate namespace
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;
}