mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-23 08:00:20 +00:00
WindowServer: Always clip window updates to the window's outer rect.
This commit is contained in:
parent
e009be5973
commit
684c52941d
Notes:
sideshowbarker
2024-07-19 15:06:27 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/684c52941de
1 changed files with 2 additions and 0 deletions
|
@ -875,6 +875,8 @@ void WSWindowManager::compose()
|
|||
return;
|
||||
if (!any_dirty_rect_intersects_window(window))
|
||||
return;
|
||||
PainterStateSaver saver(*m_back_painter);
|
||||
m_back_painter->set_clip_rect(outer_window_rect(window));
|
||||
for (auto& dirty_rect : dirty_rects.rects()) {
|
||||
PainterStateSaver saver(*m_back_painter);
|
||||
m_back_painter->set_clip_rect(dirty_rect);
|
||||
|
|
Loading…
Reference in a new issue