summaryrefslogtreecommitdiff
path: root/libkmstest/cpuframebuffer.cpp
diff options
context:
space:
mode:
authorTomi Valkeinen <tomi.valkeinen@ti.com>2016-05-23 09:54:08 +0300
committerTomi Valkeinen <tomi.valkeinen@ti.com>2016-05-23 09:54:08 +0300
commita5c28bcb2ead34e921617711ebf94ffcb5d72878 (patch)
treee2f93259f63407357c70b06a7d59c24fde5a3901 /libkmstest/cpuframebuffer.cpp
parent0bc5bbd6766949d651f98e12981d79c86ce0bf99 (diff)
File/dir renames
Diffstat (limited to 'libkmstest/cpuframebuffer.cpp')
-rw-r--r--libkmstest/cpuframebuffer.cpp36
1 files changed, 0 insertions, 36 deletions
diff --git a/libkmstest/cpuframebuffer.cpp b/libkmstest/cpuframebuffer.cpp
deleted file mode 100644
index 1f14ddc..0000000
--- a/libkmstest/cpuframebuffer.cpp
+++ /dev/null
@@ -1,36 +0,0 @@
-#include <map>
-
-#include "cpuframebuffer.h"
-
-using namespace std;
-
-namespace kms {
-
-CPUFramebuffer::CPUFramebuffer(uint32_t width, uint32_t height, PixelFormat format)
- : m_width(width), m_height(height), m_format(format)
-{
- const PixelFormatInfo& format_info = get_pixel_format_info(m_format);
-
- m_num_planes = format_info.num_planes;
-
- for (unsigned i = 0; i < format_info.num_planes; ++i) {
- const PixelFormatPlaneInfo& pi = format_info.planes[i];
- FramebufferPlane& plane = m_planes[i];
-
- plane.stride = width * pi.bitspp / 8;
- plane.size = plane.stride * height/ pi.ysub;
- plane.offset = 0;
- plane.map = new uint8_t[plane.size];
- }
-}
-
-CPUFramebuffer::~CPUFramebuffer()
-{
- for (unsigned i = 0; i < m_num_planes; ++i) {
- FramebufferPlane& plane = m_planes[i];
-
- delete plane.map;
- }
-}
-
-}