summaryrefslogtreecommitdiff
path: root/kms++/inc
diff options
context:
space:
mode:
authorTomi Valkeinen <tomi.valkeinen@ti.com>2016-06-20 08:46:32 +0300
committerTomi Valkeinen <tomi.valkeinen@ti.com>2016-06-20 08:46:32 +0300
commit365091ec413d8814b38d183adb7f0d0ee1109cbe (patch)
treeb48d3de809d31abc833c08d0fbdae83a9049eb31 /kms++/inc
parente17e6f5c37b702092d8d4f97dd70f237c366708f (diff)
Add Framebuffer::flush()
Diffstat (limited to 'kms++/inc')
-rw-r--r--kms++/inc/kms++/framebuffer.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/kms++/inc/kms++/framebuffer.h b/kms++/inc/kms++/framebuffer.h
index cbf705d..faf2e71 100644
--- a/kms++/inc/kms++/framebuffer.h
+++ b/kms++/inc/kms++/framebuffer.h
@@ -13,6 +13,8 @@ public:
uint32_t width() const { return m_width; }
uint32_t height() const { return m_height; }
+
+ void flush();
protected:
Framebuffer(Card& card, uint32_t width, uint32_t height);