diff options
author | Tomi Valkeinen <tomi.valkeinen@ideasonboard.com> | 2021-07-26 10:42:48 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-26 10:42:48 +0300 |
commit | 54f591ec0de61dd192baf781c9b2ec87d5b461f7 (patch) | |
tree | ffa4b6142b0b56c57ea73259a4fc054894acd723 /kms++/inc | |
parent | 5afc8d918f2c084acd65027604868dfde43395cf (diff) | |
parent | 3d2cde2851e7631ad3454d8371f74e2bc2e7f206 (diff) |
Merge pull request #63 from notro/gud
Add partial fb flushing and expose some more properties in the python bindings
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: |