diff options
Diffstat (limited to 'Widgets/FrameBuffer.h')
-rw-r--r-- | Widgets/FrameBuffer.h | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/Widgets/FrameBuffer.h b/Widgets/FrameBuffer.h deleted file mode 100644 index c0758f19a6..0000000000 --- a/Widgets/FrameBuffer.h +++ /dev/null @@ -1,25 +0,0 @@ -#pragma once - -#include "AbstractScreen.h" -#include "Color.h" - -class GraphicsBitmap; - -class FrameBuffer final : public AbstractScreen { -public: - FrameBuffer(unsigned width, unsigned height); - FrameBuffer(RGBA32*, unsigned width, unsigned height); - virtual ~FrameBuffer() override; - - void show(); - - static FrameBuffer& the(); - - RGBA32* scanline(int y); - - static void initialize(); - -private: - RGBA32* m_data { nullptr }; -}; - |