summaryrefslogtreecommitdiff
path: root/src/mbgl/shader/raster_shader.hpp
blob: 977556a097171746d5f0691b1e52c1df225bc7ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#pragma once

#include <mbgl/gl/shader.hpp>
#include <mbgl/gl/attribute.hpp>
#include <mbgl/shader/raster_uniforms.hpp>

namespace mbgl {

class RasterVertex;

class RasterShader : public gl::Shader {
public:
    RasterShader(gl::Context&, Defines defines = None);

    using VertexType = RasterVertex;
    using UniformsType = RasterUniforms;

    gl::Attribute<int16_t, 2>  a_pos         = { "a_pos",         *this };
    gl::Attribute<uint16_t, 2> a_texture_pos = { "a_texture_pos", *this };

    typename RasterUniforms::State uniformsState;
};

} // namespace mbgl