summaryrefslogtreecommitdiff
path: root/platform/default/mbgl/gl/offscreen_view.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'platform/default/mbgl/gl/offscreen_view.hpp')
-rw-r--r--platform/default/mbgl/gl/offscreen_view.hpp28
1 files changed, 0 insertions, 28 deletions
diff --git a/platform/default/mbgl/gl/offscreen_view.hpp b/platform/default/mbgl/gl/offscreen_view.hpp
deleted file mode 100644
index eb888272e5..0000000000
--- a/platform/default/mbgl/gl/offscreen_view.hpp
+++ /dev/null
@@ -1,28 +0,0 @@
-#pragma once
-
-#include <mbgl/map/view.hpp>
-#include <mbgl/util/image.hpp>
-
-namespace mbgl {
-
-namespace gl {
-class Context;
-} // namespace gl
-
-class OffscreenView : public View {
-public:
- OffscreenView(gl::Context&, Size size = { 256, 256 });
- ~OffscreenView() override;
-
- void bind() override;
-
- PremultipliedImage readStillImage();
-
- const Size& getSize() const;
-
-private:
- class Impl;
- const std::unique_ptr<Impl> impl;
-};
-
-} // namespace mbgl