mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
LibGUI: Coalesce update rects at the GWindow level.
This commit is contained in:
parent
53d34a0885
commit
08322ab8e1
Notes:
sideshowbarker
2024-07-19 15:48:01 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/08322ab8e16
4 changed files with 10 additions and 8 deletions
|
@ -38,7 +38,6 @@ void GWidget::event(GEvent& event)
|
|||
{
|
||||
switch (event.type()) {
|
||||
case GEvent::Paint:
|
||||
m_pending_paint_event_rects.clear();
|
||||
return handle_paint_event(static_cast<GPaintEvent&>(event));
|
||||
case GEvent::Resize:
|
||||
return handle_resize_event(static_cast<GResizeEvent&>(event));
|
||||
|
@ -175,11 +174,6 @@ void GWidget::update(const Rect& rect)
|
|||
auto* w = window();
|
||||
if (!w)
|
||||
return;
|
||||
for (auto& pending_rect : m_pending_paint_event_rects) {
|
||||
if (pending_rect.contains(rect))
|
||||
return;
|
||||
}
|
||||
m_pending_paint_event_rects.append(rect);
|
||||
w->update(rect.translated(window_relative_rect().location()));
|
||||
}
|
||||
|
||||
|
|
|
@ -136,7 +136,5 @@ private:
|
|||
SizePolicy m_vertical_size_policy { SizePolicy::Fill };
|
||||
Size m_preferred_size;
|
||||
|
||||
Vector<Rect> m_pending_paint_event_rects;
|
||||
|
||||
bool m_fill_with_background_color { true };
|
||||
};
|
||||
|
|
|
@ -147,6 +147,7 @@ void GWindow::event(GEvent& event)
|
|||
}
|
||||
|
||||
if (event.is_paint_event()) {
|
||||
m_pending_paint_event_rects.clear();
|
||||
if (!m_main_widget)
|
||||
return;
|
||||
auto& paint_event = static_cast<GPaintEvent&>(event);
|
||||
|
@ -196,6 +197,14 @@ void GWindow::update(const Rect& a_rect)
|
|||
{
|
||||
if (!m_window_id)
|
||||
return;
|
||||
for (auto& pending_rect : m_pending_paint_event_rects) {
|
||||
if (pending_rect.contains(a_rect)) {
|
||||
dbgprintf("Ignoring %s since it's contained by pending rect %s\n", a_rect.to_string().characters(), pending_rect.to_string().characters());
|
||||
return;
|
||||
}
|
||||
}
|
||||
m_pending_paint_event_rects.append(a_rect);
|
||||
|
||||
GUI_Rect rect = a_rect;
|
||||
int rc = gui_invalidate_window(m_window_id, a_rect.is_null() ? nullptr : &rect);
|
||||
ASSERT(rc == 0);
|
||||
|
|
|
@ -69,6 +69,7 @@ private:
|
|||
WeakPtr<GWidget> m_global_cursor_tracking_widget;
|
||||
Rect m_rect_when_windowless;
|
||||
String m_title_when_windowless;
|
||||
Vector<Rect> m_pending_paint_event_rects;
|
||||
bool m_should_exit_app_on_close { false };
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue