#pragma once #include namespace mbgl { namespace gl { class Context; class Texture; } // namespace gl class OffscreenTexture { public: OffscreenTexture(gl::Context&, Size size = { 256, 256 }); OffscreenTexture(gl::Context&, Size size, gl::Renderbuffer&); ~OffscreenTexture(); OffscreenTexture(OffscreenTexture&&); OffscreenTexture& operator=(OffscreenTexture&&); void bind(); PremultipliedImage readStillImage(); gl::Texture& getTexture(); const Size& getSize() const; private: class Impl; std::unique_ptr impl; }; } // namespace mbgl