#include #include #include #include namespace mbgl { Backend::Backend() : context(std::make_unique()) { } gl::Context& Backend::getContext() { assert(BackendScope::exists()); return *context; } Backend::~Backend() = default; } // namespace mbgl