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

#include <cstdio>

using namespace mbgl;

DotShader::DotShader(gl::GLObjectStore& glObjectStore)
    : Shader("dot", shaders::dot::vertex, shaders::dot::fragment, glObjectStore) {
}

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