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/extcpuframebuffer.h | 42 ------------------------------------------ 1 file changed, 42 deletions(-) delete mode 100644 kms++util/extcpuframebuffer.h (limited to 'kms++util/extcpuframebuffer.h') diff --git a/kms++util/extcpuframebuffer.h b/kms++util/extcpuframebuffer.h deleted file mode 100644 index 5d3be74..0000000 --- a/kms++util/extcpuframebuffer.h +++ /dev/null @@ -1,42 +0,0 @@ -#pragma once - -#include - -namespace kms -{ - -class ExtCPUFramebuffer : public IMappedFramebuffer -{ -public: - ExtCPUFramebuffer(uint32_t width, uint32_t height, PixelFormat format, - uint8_t* buffer, uint32_t pitch); - ExtCPUFramebuffer(uint32_t width, uint32_t height, PixelFormat format, - uint8_t* buffers[4], uint32_t pitches[4]); - virtual ~ExtCPUFramebuffer(); - - 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 0; } - uint8_t* map(unsigned plane) { return m_planes[plane].map; } - -private: - struct FramebufferPlane { - uint32_t size; - uint32_t stride; - uint8_t *map; - }; - - uint32_t m_width; - uint32_t m_height; - PixelFormat m_format; - - unsigned m_num_planes; - struct FramebufferPlane m_planes[4]; -}; -} -- cgit v1.2.3