diff options
author | Noralf Trønnes <noralf@tronnes.org> | 2021-07-19 18:13:09 +0200 |
---|---|---|
committer | Noralf Trønnes <noralf@tronnes.org> | 2021-07-19 18:26:41 +0200 |
commit | 43e03aacfa211eb56037b68da66e79b162491c1b (patch) | |
tree | 603676f85dee08acf3c77d9adc29aef61aca078f /kms++/inc | |
parent | 5afc8d918f2c084acd65027604868dfde43395cf (diff) |
framebuffer: Support partial flushing
Signed-off-by: Noralf Trønnes <noralf@tronnes.org>
Diffstat (limited to 'kms++/inc')
-rw-r--r-- | kms++/inc/kms++/framebuffer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kms++/inc/kms++/framebuffer.h b/kms++/inc/kms++/framebuffer.h index 6f77b98..1bd477c 100644 --- a/kms++/inc/kms++/framebuffer.h +++ b/kms++/inc/kms++/framebuffer.h @@ -41,6 +41,7 @@ public: uint32_t width() const override { return m_width; } uint32_t height() const override { return m_height; } + void flush(uint32_t x, uint32_t y, uint32_t width, uint32_t height); void flush(); protected: |