summaryrefslogtreecommitdiff
path: root/kms++util/cpuframebuffer.h
diff options
context:
space:
mode:
authorTomi Valkeinen <tomi.valkeinen@ti.com>2016-06-11 22:39:24 +0300
committerTomi Valkeinen <tomi.valkeinen@ti.com>2016-06-11 22:41:01 +0300
commit3c6ea25bcfafc513560c9e8a4baaf211bec2750c (patch)
treeed8b174bb669c0012af28338def51efd808e61fb /kms++util/cpuframebuffer.h
parent9916712a62169606d845510028a3ea6f84bd442f (diff)
kms++util: split to subdirs
Diffstat (limited to 'kms++util/cpuframebuffer.h')
-rw-r--r--kms++util/cpuframebuffer.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/kms++util/cpuframebuffer.h b/kms++util/cpuframebuffer.h
deleted file mode 100644
index 1498528..0000000
--- a/kms++util/cpuframebuffer.h
+++ /dev/null
@@ -1,44 +0,0 @@
-#pragma once
-
-#include <kms++/kms++.h>
-
-namespace kms
-{
-
-class CPUFramebuffer : public IMappedFramebuffer {
-public:
- CPUFramebuffer(uint32_t width, uint32_t height, PixelFormat format);
-
- virtual ~CPUFramebuffer();
-
- CPUFramebuffer(const CPUFramebuffer& other) = delete;
- CPUFramebuffer& operator=(const CPUFramebuffer& other) = delete;
-
- uint32_t width() const { return m_width; }
- uint32_t height() const { return m_height; }
-
- PixelFormat format() const { return m_format; }
- unsigned num_planes() const { return m_num_planes; }
-
- 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) { return m_planes[plane].map; }
-
-private:
- struct FramebufferPlane {
- uint32_t size;
- uint32_t stride;
- uint32_t offset;
- uint8_t *map;
- };
-
- uint32_t m_width;
- uint32_t m_height;
- PixelFormat m_format;
-
- unsigned m_num_planes;
- struct FramebufferPlane m_planes[4];
-};
-
-}