blob: 32c30ea313e10fcc957a6a033813b4544cc91c8c (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <mbgl/programs/heatmap_program.hpp>
#include <mbgl/gfx/context_impl.hpp>
namespace mbgl {
template std::unique_ptr<gfx::Program<HeatmapProgram>> gfx::Context::createProgram(const ProgramParameters&);
static_assert(sizeof(HeatmapLayoutVertex) == 4, "expected HeatmapLayoutVertex size");
} // namespace mbgl
|