summaryrefslogtreecommitdiff
path: root/src/mbgl/geometry/static_vertex_buffer.cpp
blob: c1e8caab9e706e7ce11fc9e8d90201563457d405 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <mbgl/geometry/static_vertex_buffer.hpp>
#include <mbgl/platform/gl.hpp>

namespace mbgl {

StaticVertexBuffer::StaticVertexBuffer(std::initializer_list<std::pair<int16_t, int16_t>> init) {
    for (const auto& vertex : init) {
        vertex_type *vertices = static_cast<vertex_type *>(addElement());
        vertices[0] = vertex.first;
        vertices[1] = vertex.second;
    }
}

}