mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 12:19:54 +00:00
LibWeb: Rename RecordingPainter to DisplayListRecorder
Use more widely recognized name among browser engine developers.
This commit is contained in:
parent
5570e6b648
commit
854b269338
Notes:
sideshowbarker
2024-07-17 14:33:07 +09:00
Author: https://github.com/kalenikaliaksandr
Commit: 854b269338
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/260
43 changed files with 204 additions and 204 deletions
|
@ -94,9 +94,9 @@ RefPtr<Gfx::Bitmap> SVGDecodedImageData::render(Gfx::IntSize size) const
|
|||
m_document->update_layout();
|
||||
|
||||
Painting::DisplayList display_list;
|
||||
Painting::RecordingPainter recording_painter(display_list);
|
||||
Painting::DisplayListRecorder display_list_recorder(display_list);
|
||||
|
||||
m_document->navigable()->record_display_list(recording_painter, {});
|
||||
m_document->navigable()->record_display_list(display_list_recorder, {});
|
||||
|
||||
auto painting_command_executor_type = m_page_client->painting_command_executor_type();
|
||||
switch (painting_command_executor_type) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue