diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2016-06-11 21:46:24 +0300 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2016-06-11 21:46:24 +0300 |
commit | 9916712a62169606d845510028a3ea6f84bd442f (patch) | |
tree | aca4e1bec39500812111c43a8ecee862edae0002 /kms++/extframebuffer.h | |
parent | 736b295100ce441e800457bcbd08cb36db543ff2 (diff) |
kms++: organize into subdirs
Diffstat (limited to 'kms++/extframebuffer.h')
-rw-r--r-- | kms++/extframebuffer.h | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/kms++/extframebuffer.h b/kms++/extframebuffer.h deleted file mode 100644 index eab7e3c..0000000 --- a/kms++/extframebuffer.h +++ /dev/null @@ -1,21 +0,0 @@ -#pragma once - -#include "framebuffer.h" -#include "pixelformats.h" - -namespace kms -{ - -class ExtFramebuffer : public Framebuffer -{ -public: - ExtFramebuffer(Card& card, uint32_t width, uint32_t height, uint8_t depth, uint8_t bpp, uint32_t stride, uint32_t handle); - ExtFramebuffer(Card& card, uint32_t width, uint32_t height, PixelFormat format, - uint32_t handles[4], uint32_t pitches[4], uint32_t offsets[4]); - ExtFramebuffer(Card& card, uint32_t width, uint32_t height, PixelFormat format, - int fds[4], uint32_t pitches[4], uint32_t offsets[4]); - virtual ~ExtFramebuffer(); - -private: -}; -} |