summaryrefslogtreecommitdiff
path: root/kms++/dumbframebuffer.h
diff options
context:
space:
mode:
authorTomi Valkeinen <tomi.valkeinen@ti.com>2016-06-11 21:46:24 +0300
committerTomi Valkeinen <tomi.valkeinen@ti.com>2016-06-11 21:46:24 +0300
commit9916712a62169606d845510028a3ea6f84bd442f (patch)
treeaca4e1bec39500812111c43a8ecee862edae0002 /kms++/dumbframebuffer.h
parent736b295100ce441e800457bcbd08cb36db543ff2 (diff)
kms++: organize into subdirs
Diffstat (limited to 'kms++/dumbframebuffer.h')
-rw-r--r--kms++/dumbframebuffer.h46
1 files changed, 0 insertions, 46 deletions
diff --git a/kms++/dumbframebuffer.h b/kms++/dumbframebuffer.h
deleted file mode 100644
index 6b3ee64..0000000
--- a/kms++/dumbframebuffer.h
+++ /dev/null
@@ -1,46 +0,0 @@
-#pragma once
-
-#include "framebuffer.h"
-#include "pixelformats.h"
-
-namespace kms
-{
-class DumbFramebuffer : public Framebuffer, public IMappedFramebuffer
-{
-public:
- DumbFramebuffer(Card& card, uint32_t width, uint32_t height, const std::string& fourcc);
- DumbFramebuffer(Card& card, uint32_t width, uint32_t height, PixelFormat format);
- virtual ~DumbFramebuffer();
-
- uint32_t width() const { return Framebuffer::width(); }
- uint32_t height() const { return Framebuffer::height(); }
-
- PixelFormat format() const { return m_format; }
- unsigned num_planes() const { return m_num_planes; }
-
- uint32_t handle(unsigned plane) const { return m_planes[plane].handle; }
- uint32_t stride(unsigned plane) const { return m_planes[plane].stride; }
- uint32_t size(unsigned plane) const { return m_planes[plane].size; }
- uint32_t offset(unsigned plane) const { return m_planes[plane].offset; }
- uint8_t* map(unsigned plane);
- int prime_fd(unsigned plane);
-
-private:
- struct FramebufferPlane {
- uint32_t handle;
- int prime_fd;
- uint32_t size;
- uint32_t stride;
- uint32_t offset;
- uint8_t *map;
- };
-
- void Create();
- void Destroy();
-
- unsigned m_num_planes;
- struct FramebufferPlane m_planes[4];
-
- PixelFormat m_format;
-};
-}