From 3c6ea25bcfafc513560c9e8a4baaf211bec2750c Mon Sep 17 00:00:00 2001 From: Tomi Valkeinen Date: Sat, 11 Jun 2016 22:39:24 +0300 Subject: kms++util: split to subdirs --- kms++util/cpuframebuffer.cpp | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 kms++util/cpuframebuffer.cpp (limited to 'kms++util/cpuframebuffer.cpp') diff --git a/kms++util/cpuframebuffer.cpp b/kms++util/cpuframebuffer.cpp deleted file mode 100644 index 1f14ddc..0000000 --- a/kms++util/cpuframebuffer.cpp +++ /dev/null @@ -1,36 +0,0 @@ -#include - -#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; - } -} - -} -- cgit v1.2.3