blob: 66fce84d83697dd8cdfff1a1b6c37bed858b3bb5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include <mbgl/shader/symbol_icon_shader.hpp>
#include <mbgl/shader/symbol_icon.vertex.hpp>
#include <mbgl/shader/symbol_icon.fragment.hpp>
#include <mbgl/shader/symbol_vertex.hpp>
namespace mbgl {
SymbolIconShader::SymbolIconShader(gl::Context& context, Defines defines)
: Shader(shaders::symbol_icon::name,
shaders::symbol_icon::vertex,
shaders::symbol_icon::fragment,
context, defines),
uniformsState(SymbolIconUniforms::state(*this)) {
}
} // namespace mbgl
|