From 17d180891f1e237ea5d25835999a8b23a6e7946d Mon Sep 17 00:00:00 2001 From: Tomi Valkeinen Date: Sat, 11 Jun 2016 20:17:35 +0300 Subject: rename dirs --- libkms++/dumbframebuffer.h | 46 ---------------------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 libkms++/dumbframebuffer.h (limited to 'libkms++/dumbframebuffer.h') diff --git a/libkms++/dumbframebuffer.h b/libkms++/dumbframebuffer.h deleted file mode 100644 index 6b3ee64..0000000 --- a/libkms++/dumbframebuffer.h +++ /dev/null @@ -1,46 +0,0 @@ -#pragma once - -#include "framebuffer.h" -#include "pixelformats.h" - -namespace kms -{ -class DumbFramebuffer : public Framebuffer, public IMappedFramebuffer -{ -public: - DumbFramebuffer(Card& card, uint32_t width, uint32_t height, const std::string& fourcc); - DumbFramebuffer(Card& card, uint32_t width, uint32_t height, PixelFormat format); - virtual ~DumbFramebuffer(); - - uint32_t width() const { return Framebuffer::width(); } - uint32_t height() const { return Framebuffer::height(); } - - PixelFormat format() const { return m_format; } - unsigned num_planes() const { return m_num_planes; } - - uint32_t handle(unsigned plane) const { return m_planes[plane].handle; } - 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); - int prime_fd(unsigned plane); - -private: - struct FramebufferPlane { - uint32_t handle; - int prime_fd; - uint32_t size; - uint32_t stride; - uint32_t offset; - uint8_t *map; - }; - - void Create(); - void Destroy(); - - unsigned m_num_planes; - struct FramebufferPlane m_planes[4]; - - PixelFormat m_format; -}; -} -- cgit v1.2.3