aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'kms++util/src/cpuframebuffer.cpp')
-rw-r--r--kms++util/src/cpuframebuffer.cpp36
1 files changed, 36 insertions, 0 deletions
diff --git a/kms++util/src/cpuframebuffer.cpp b/kms++util/src/cpuframebuffer.cpp
new file mode 100644
index 0000000..d356596
--- /dev/null
+++ b/kms++util/src/cpuframebuffer.cpp
@@ -0,0 +1,36 @@
1#include <map>
2
3#include <kms++util/cpuframebuffer.h>
4
5using namespace std;
6
7namespace kms {
8
9CPUFramebuffer::CPUFramebuffer(uint32_t width, uint32_t height, PixelFormat format)
10 : m_width(width), m_height(height), m_format(format)
11{
12 const PixelFormatInfo& format_info = get_pixel_format_info(m_format);
13
14 m_num_planes = format_info.num_planes;
15
16 for (unsigned i = 0; i < format_info.num_planes; ++i) {
17 const PixelFormatPlaneInfo& pi = format_info.planes[i];
18 FramebufferPlane& plane = m_planes[i];
19
20 plane.stride = width * pi.bitspp / 8;
21 plane.size = plane.stride * height/ pi.ysub;
22 plane.offset = 0;
23 plane.map = new uint8_t[plane.size];
24 }
25}
26
27CPUFramebuffer::~CPUFramebuffer()
28{
29 for (unsigned i = 0; i < m_num_planes; ++i) {
30 FramebufferPlane& plane = m_planes[i];
31
32 delete plane.map;
33 }
34}
35
36}