Rework the rendering model so that clients instantiate backing stores.

This makes interactive resizing work a lot better, althought it's still not
perfect. There are still glitches and unpleasant flashes of zeroed memory.
This commit is contained in:
Andreas Kling 2019-02-20 21:59:13 +01:00
commit fa02d2a39b
Notes: sideshowbarker 2024-07-19 15:39:31 +09:00
17 changed files with 185 additions and 46 deletions

View file

@ -760,3 +760,9 @@ void Terminal::force_repaint()
m_need_full_flush = true;
update();
}
void Terminal::resize_event(GResizeEvent&)
{
m_needs_background_fill = true;
force_repaint();
}