summaryrefslogtreecommitdiff
path: root/src/mbgl/shader/outline_shader.cpp
blob: 09aff361c32c6ee75886c4fb8f85c9f8e3032c60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <mbgl/shader/outline_shader.hpp>
#include <mbgl/shader/outline.vertex.hpp>
#include <mbgl/shader/outline.fragment.hpp>
#include <mbgl/gl/gl.hpp>

using namespace mbgl;
using namespace shaders::outline;

OutlineShader::OutlineShader(gl::ObjectStore& store)
    : Shader(::name, ::vertex, ::fragment, store) {
}

void OutlineShader::bind(GLbyte* offset) {
    MBGL_CHECK_ERROR(glEnableVertexAttribArray(a_pos));
    MBGL_CHECK_ERROR(glVertexAttribPointer(a_pos, 2, GL_SHORT, false, 0, offset));
}