#include #include #include #include #include using namespace mbgl; LineSDFShader::LineSDFShader() : Shader("line", shaders::linesdf::vertex, shaders::linesdf::fragment) { a_data = MBGL_CHECK_ERROR(glGetAttribLocation(program, "a_data")); } void LineSDFShader::bind(GLbyte* offset) { MBGL_CHECK_ERROR(glEnableVertexAttribArray(a_pos)); MBGL_CHECK_ERROR(glVertexAttribPointer(a_pos, 2, GL_SHORT, false, 8, offset + 0)); MBGL_CHECK_ERROR(glEnableVertexAttribArray(a_data)); MBGL_CHECK_ERROR(glVertexAttribPointer(a_data, 4, GL_BYTE, false, 8, offset + 4)); }