diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2017-02-12 11:07:22 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2017-02-12 11:07:22 +0100 |
commit | cec1d9ea562e3d52c98f1219db5e186943f2f0d6 (patch) | |
tree | 3a66ff06ef16cce96e215644032e6c9fac2cbe8a /plugingui/canvas.h | |
parent | dc33f15a6b968139779c2b7d2003d3ef6e7d5748 (diff) |
Refactor/introduce widget and windiow redraw/dirty mechanism to eradicate unnecessary rendering passes during event handling.
Diffstat (limited to 'plugingui/canvas.h')
-rw-r--r-- | plugingui/canvas.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/plugingui/canvas.h b/plugingui/canvas.h index cafe483..2326f0e 100644 --- a/plugingui/canvas.h +++ b/plugingui/canvas.h @@ -39,14 +39,6 @@ public: //! @returns a reference to the pixel buffer. virtual PixelBufferAlpha& GetPixelBuffer() = 0; - - //! Signal the beginning of a paint operation. - virtual void beginPaint() = 0; - - //! Signal the ending of a paint operation - //! This might trigger a redraw operation. - virtual void endPaint() = 0; - }; } // GUI:: |