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

#include <cstdio>

using namespace mbgl;

OutlineShader::OutlineShader(gl::GLObjectStore& glObjectStore)
    : Shader("outline", shaders::outline::vertex, shaders::outline::fragment, glObjectStore) {
}

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