From 513766368980cda9adc613f690550cc42dfc85c0 Mon Sep 17 00:00:00 2001 From: Tomi Valkeinen Date: Thu, 18 May 2017 13:21:07 +0300 Subject: omapfb: add TILER support Add TILER rotation support for omapframebuffer. Signed-off-by: Tomi Valkeinen --- kms++/inc/kms++/omap/omapframebuffer.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'kms++/inc') diff --git a/kms++/inc/kms++/omap/omapframebuffer.h b/kms++/inc/kms++/omap/omapframebuffer.h index 16d6cf8..dcaaa4f 100644 --- a/kms++/inc/kms++/omap/omapframebuffer.h +++ b/kms++/inc/kms++/omap/omapframebuffer.h @@ -12,8 +12,8 @@ class OmapCard; class OmapFramebuffer : public MappedFramebuffer { public: - OmapFramebuffer(OmapCard& card, uint32_t width, uint32_t height, const std::string& fourcc); - OmapFramebuffer(OmapCard& card, uint32_t width, uint32_t height, PixelFormat format); + OmapFramebuffer(OmapCard& card, uint32_t width, uint32_t height, const std::string& fourcc, bool tiled = false); + OmapFramebuffer(OmapCard& card, uint32_t width, uint32_t height, PixelFormat format, bool tiled = false); virtual ~OmapFramebuffer(); uint32_t width() const { return Framebuffer::width(); } @@ -42,7 +42,7 @@ private: uint8_t* map; }; - void Create(); + void Create(bool tiled); void Destroy(); unsigned m_num_planes; -- cgit v1.2.3