| 
									
										
										
										
											2024-02-14 16:36:42 +01:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2025-07-13 03:55:24 +02:00
										 |  |  |  * Copyright (c) 2024-2025, Aliaksandr Kalenik <kalenik.aliaksandr@gmail.com> | 
					
						
							| 
									
										
										
										
											2024-02-14 16:36:42 +01:00
										 |  |  |  * | 
					
						
							|  |  |  |  * SPDX-License-Identifier: BSD-2-Clause | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-07-25 01:39:31 +02:00
										 |  |  | #include <AK/TemporaryChange.h>
 | 
					
						
							| 
									
										
										
										
											2025-07-13 03:55:24 +02:00
										 |  |  | #include <LibWeb/Painting/DevicePixelConverter.h>
 | 
					
						
							| 
									
										
										
										
											2024-06-23 18:16:46 +02:00
										 |  |  | #include <LibWeb/Painting/DisplayList.h>
 | 
					
						
							| 
									
										
										
										
											2024-02-14 16:36:42 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | namespace Web::Painting { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-08-01 04:22:53 +02:00
										 |  |  | void DisplayList::append(DisplayListCommand&& command, Optional<i32> scroll_frame_id, RefPtr<ClipFrame const> clip_frame) | 
					
						
							| 
									
										
										
										
											2024-02-14 16:36:42 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2025-07-13 03:55:24 +02:00
										 |  |  |     m_commands.append({ scroll_frame_id, clip_frame, move(command) }); | 
					
						
							| 
									
										
										
										
											2024-02-14 16:36:42 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-07-10 02:05:28 +02:00
										 |  |  | String DisplayList::dump() const | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     StringBuilder builder; | 
					
						
							| 
									
										
										
										
											2025-08-01 11:33:53 +02:00
										 |  |  |     int indentation = 0; | 
					
						
							|  |  |  |     for (auto const& command_list_item : m_commands) { | 
					
						
							|  |  |  |         auto const& command = command_list_item.command; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         command.visit([&indentation](auto const& command) { | 
					
						
							|  |  |  |             if constexpr (requires { command.nesting_level_change; }) { | 
					
						
							|  |  |  |                 if (command.nesting_level_change < 0 && indentation >= -command.nesting_level_change) | 
					
						
							|  |  |  |                     indentation += command.nesting_level_change; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (indentation > 0) | 
					
						
							|  |  |  |             builder.append(MUST(String::repeated("  "_string, indentation))); | 
					
						
							|  |  |  |         command.visit([&builder](auto const& cmd) { cmd.dump(builder); }); | 
					
						
							|  |  |  |         builder.append('\n'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         command.visit([&indentation](auto const& command) { | 
					
						
							|  |  |  |             if constexpr (requires { command.nesting_level_change; }) { | 
					
						
							|  |  |  |                 if (command.nesting_level_change > 0) | 
					
						
							|  |  |  |                     indentation += command.nesting_level_change; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         }); | 
					
						
							| 
									
										
										
										
											2025-07-10 02:05:28 +02:00
										 |  |  |     } | 
					
						
							|  |  |  |     return builder.to_string_without_validation(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-08-01 04:22:53 +02:00
										 |  |  | static Optional<Gfx::IntRect> command_bounding_rectangle(DisplayListCommand const& command) | 
					
						
							| 
									
										
										
										
											2024-02-14 16:36:42 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     return command.visit( | 
					
						
							|  |  |  |         [&](auto const& command) -> Optional<Gfx::IntRect> { | 
					
						
							|  |  |  |             if constexpr (requires { command.bounding_rect(); }) | 
					
						
							|  |  |  |                 return command.bounding_rect(); | 
					
						
							|  |  |  |             else | 
					
						
							|  |  |  |                 return {}; | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-08-01 04:22:53 +02:00
										 |  |  | static bool command_is_clip_or_mask(DisplayListCommand const& command) | 
					
						
							| 
									
										
										
										
											2024-11-13 12:29:17 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     return command.visit( | 
					
						
							|  |  |  |         [&](auto const& command) -> bool { | 
					
						
							|  |  |  |             if constexpr (requires { command.is_clip_or_mask(); }) | 
					
						
							|  |  |  |                 return command.is_clip_or_mask(); | 
					
						
							|  |  |  |             else | 
					
						
							|  |  |  |                 return false; | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-07-25 01:39:31 +02:00
										 |  |  | void DisplayListPlayer::execute(DisplayList& display_list, ScrollStateSnapshotByDisplayList&& scroll_state_snapshot_by_display_list, RefPtr<Gfx::PaintingSurface> surface) | 
					
						
							| 
									
										
										
										
											2025-04-01 20:18:15 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2025-07-25 01:39:31 +02:00
										 |  |  |     TemporaryChange change { m_scroll_state_snapshots_by_display_list, move(scroll_state_snapshot_by_display_list) }; | 
					
						
							| 
									
										
										
										
											2025-04-01 20:18:15 +02:00
										 |  |  |     if (surface) { | 
					
						
							|  |  |  |         surface->lock_context(); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2025-07-25 01:39:31 +02:00
										 |  |  |     auto scroll_state_snapshot = m_scroll_state_snapshots_by_display_list.get(display_list).value_or({}); | 
					
						
							|  |  |  |     execute_impl(display_list, scroll_state_snapshot, surface); | 
					
						
							| 
									
										
										
										
											2025-04-01 20:18:15 +02:00
										 |  |  |     if (surface) { | 
					
						
							|  |  |  |         surface->unlock_context(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-07-24 17:18:29 +02:00
										 |  |  | void DisplayListPlayer::apply_clip_frame(ClipFrame const& clip_frame, ScrollStateSnapshot const& scroll_state, DevicePixelConverter const& device_pixel_converter) | 
					
						
							| 
									
										
										
										
											2025-07-13 03:55:24 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     auto const& clip_rects = clip_frame.clip_rects(); | 
					
						
							|  |  |  |     if (clip_rects.is_empty()) | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     save({}); | 
					
						
							|  |  |  |     for (auto const& clip_rect : clip_rects) { | 
					
						
							|  |  |  |         auto css_rect = clip_rect.rect; | 
					
						
							| 
									
										
										
										
											2025-07-24 17:18:29 +02:00
										 |  |  |         if (auto enclosing_scroll_frame_id = clip_rect.enclosing_scroll_frame_id; enclosing_scroll_frame_id.has_value()) { | 
					
						
							|  |  |  |             auto cumulative_offset = scroll_state.cumulative_offset_for_frame_with_id(enclosing_scroll_frame_id.value()); | 
					
						
							|  |  |  |             css_rect.translate_by(cumulative_offset); | 
					
						
							| 
									
										
										
										
											2025-07-13 03:55:24 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |         auto device_rect = device_pixel_converter.rounded_device_rect(css_rect).to_type<int>(); | 
					
						
							|  |  |  |         auto corner_radii = clip_rect.corner_radii.as_corners(device_pixel_converter); | 
					
						
							|  |  |  |         if (corner_radii.has_any_radius()) { | 
					
						
							|  |  |  |             add_rounded_rect_clip({ .corner_radii = corner_radii, .border_rect = device_rect, .corner_clip = CornerClip::Outside }); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             add_clip_rect({ .rect = device_rect }); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void DisplayListPlayer::remove_clip_frame(ClipFrame const& clip_frame) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (clip_frame.clip_rects().is_empty()) | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     restore({}); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-04-11 20:00:56 +02:00
										 |  |  | void DisplayListPlayer::execute_impl(DisplayList& display_list, ScrollStateSnapshot const& scroll_state, RefPtr<Gfx::PaintingSurface> surface) | 
					
						
							| 
									
										
										
										
											2024-02-14 16:36:42 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2025-04-01 19:53:16 +02:00
										 |  |  |     if (surface) | 
					
						
							|  |  |  |         m_surfaces.append(*surface); | 
					
						
							|  |  |  |     ScopeGuard guard = [&surfaces = m_surfaces, pop_surface_from_stack = !!surface] { | 
					
						
							|  |  |  |         if (pop_surface_from_stack) | 
					
						
							|  |  |  |             (void)surfaces.take_last(); | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-07-24 16:48:32 +03:00
										 |  |  |     auto const& commands = display_list.commands(); | 
					
						
							| 
									
										
										
										
											2024-08-11 16:46:35 +02:00
										 |  |  |     auto device_pixels_per_css_pixel = display_list.device_pixels_per_css_pixel(); | 
					
						
							| 
									
										
										
										
											2024-07-24 16:48:32 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-07-13 03:55:24 +02:00
										 |  |  |     DevicePixelConverter device_pixel_converter { device_pixels_per_css_pixel }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-04-01 19:53:16 +02:00
										 |  |  |     VERIFY(!m_surfaces.is_empty()); | 
					
						
							| 
									
										
										
										
											2025-01-29 10:24:57 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-09-24 19:33:54 +02:00
										 |  |  |     auto translate_command_by_scroll = [&](auto& command, int scroll_frame_id) { | 
					
						
							|  |  |  |         auto cumulative_offset = scroll_state.cumulative_offset_for_frame_with_id(scroll_frame_id); | 
					
						
							|  |  |  |         auto scroll_offset = cumulative_offset.to_type<double>().scaled(device_pixels_per_css_pixel).to_type<int>(); | 
					
						
							|  |  |  |         command.visit( | 
					
						
							|  |  |  |             [scroll_offset](auto& command) { | 
					
						
							|  |  |  |                 if constexpr (requires { command.translate_by(scroll_offset); }) { | 
					
						
							|  |  |  |                     command.translate_by(scroll_offset); | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             }); | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     auto compute_stacking_context_bounds = [&](PushStackingContext const& push_stacking_context, size_t push_stacking_context_index) { | 
					
						
							|  |  |  |         Gfx::IntRect bounding_rect; | 
					
						
							|  |  |  |         display_list.for_each_command_in_range(push_stacking_context_index + 1, push_stacking_context.matching_pop_index, [&](auto command, auto scroll_frame_id) { | 
					
						
							|  |  |  |             if (scroll_frame_id.has_value()) | 
					
						
							|  |  |  |                 translate_command_by_scroll(command, scroll_frame_id.value()); | 
					
						
							|  |  |  |             bounding_rect.unite(*command_bounding_rectangle(command)); | 
					
						
							|  |  |  |             return IterationDecision::Continue; | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  |         return bounding_rect; | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-07-13 03:55:24 +02:00
										 |  |  |     Vector<RefPtr<ClipFrame const>> clip_frames_stack; | 
					
						
							|  |  |  |     clip_frames_stack.append({}); | 
					
						
							| 
									
										
										
										
											2025-03-24 10:47:14 +01:00
										 |  |  |     for (size_t command_index = 0; command_index < commands.size(); command_index++) { | 
					
						
							| 
									
										
										
										
											2025-07-13 03:55:24 +02:00
										 |  |  |         auto [scroll_frame_id, clip_frame, command] = commands[command_index]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (clip_frames_stack.last() != clip_frame) { | 
					
						
							|  |  |  |             if (auto clip_frame = clip_frames_stack.take_last()) { | 
					
						
							|  |  |  |                 remove_clip_frame(*clip_frame); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             clip_frames_stack.append(clip_frame); | 
					
						
							|  |  |  |             if (clip_frame) { | 
					
						
							| 
									
										
										
										
											2025-07-24 17:18:29 +02:00
										 |  |  |                 apply_clip_frame(*clip_frame, scroll_state, device_pixel_converter); | 
					
						
							| 
									
										
										
										
											2025-07-13 03:55:24 +02:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // After entering a new stacking context, we keep the outer clip frame applied.
 | 
					
						
							|  |  |  |         // This is necessary when the stacking context has a CSS transform, and all
 | 
					
						
							|  |  |  |         // nested ClipFrames aggregate clip rectangles only up to the stacking context
 | 
					
						
							|  |  |  |         // node.
 | 
					
						
							|  |  |  |         if (command.has<PushStackingContext>()) { | 
					
						
							|  |  |  |             clip_frames_stack.append({}); | 
					
						
							|  |  |  |         } else if (command.has<PopStackingContext>()) { | 
					
						
							|  |  |  |             if (auto clip_frame = clip_frames_stack.take_last()) { | 
					
						
							|  |  |  |                 remove_clip_frame(*clip_frame); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2024-08-17 18:56:56 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (command.has<PaintScrollBar>()) { | 
					
						
							|  |  |  |             auto& paint_scroll_bar = command.get<PaintScrollBar>(); | 
					
						
							| 
									
										
										
										
											2024-10-11 20:31:19 +02:00
										 |  |  |             auto scroll_offset = scroll_state.own_offset_for_frame_with_id(paint_scroll_bar.scroll_frame_id); | 
					
						
							| 
									
										
										
										
											2024-08-17 18:56:56 +02:00
										 |  |  |             if (paint_scroll_bar.vertical) { | 
					
						
							|  |  |  |                 auto offset = scroll_offset.y() * paint_scroll_bar.scroll_size; | 
					
						
							| 
									
										
										
										
											2025-04-21 09:10:55 -04:00
										 |  |  |                 paint_scroll_bar.thumb_rect.translate_by(0, -offset.to_int() * device_pixels_per_css_pixel); | 
					
						
							| 
									
										
										
										
											2024-08-17 18:56:56 +02:00
										 |  |  |             } else { | 
					
						
							|  |  |  |                 auto offset = scroll_offset.x() * paint_scroll_bar.scroll_size; | 
					
						
							| 
									
										
										
										
											2025-04-21 09:10:55 -04:00
										 |  |  |                 paint_scroll_bar.thumb_rect.translate_by(-offset.to_int() * device_pixels_per_css_pixel, 0); | 
					
						
							| 
									
										
										
										
											2024-08-17 18:56:56 +02:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-09-24 19:33:54 +02:00
										 |  |  |         if (scroll_frame_id.has_value()) | 
					
						
							|  |  |  |             translate_command_by_scroll(command, scroll_frame_id.value()); | 
					
						
							| 
									
										
										
										
											2024-08-11 16:46:35 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-02-14 16:36:42 +01:00
										 |  |  |         auto bounding_rect = command_bounding_rectangle(command); | 
					
						
							| 
									
										
										
										
											2025-09-24 19:33:54 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (command.has<PushStackingContext>()) { | 
					
						
							|  |  |  |             auto& push_stacking_context = command.get<PushStackingContext>(); | 
					
						
							| 
									
										
										
										
											2025-09-25 01:35:26 +02:00
										 |  |  |             if (push_stacking_context.can_aggregate_children_bounds && !push_stacking_context.bounding_rect.has_value()) { | 
					
						
							| 
									
										
										
										
											2025-09-24 19:33:54 +02:00
										 |  |  |                 bounding_rect = compute_stacking_context_bounds(push_stacking_context, command_index); | 
					
						
							|  |  |  |                 push_stacking_context.bounding_rect = bounding_rect; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-07-24 16:48:32 +03:00
										 |  |  |         if (bounding_rect.has_value() && (bounding_rect->is_empty() || would_be_fully_clipped_by_painter(*bounding_rect))) { | 
					
						
							| 
									
										
										
										
											2024-11-13 12:29:17 +00:00
										 |  |  |             // Any clip or mask that's located outside of the visible region is equivalent to a simple clip-rect,
 | 
					
						
							|  |  |  |             // so replace it with one to avoid doing unnecessary work.
 | 
					
						
							|  |  |  |             if (command_is_clip_or_mask(command)) { | 
					
						
							|  |  |  |                 if (command.has<AddClipRect>()) { | 
					
						
							|  |  |  |                     add_clip_rect(command.get<AddClipRect>()); | 
					
						
							|  |  |  |                 } else { | 
					
						
							|  |  |  |                     add_clip_rect({ bounding_rect.release_value() }); | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2025-09-24 19:33:54 +02:00
										 |  |  |             if (command.has<PushStackingContext>()) { | 
					
						
							|  |  |  |                 auto pop_stacking_context = command.get<PushStackingContext>().matching_pop_index; | 
					
						
							|  |  |  |                 command_index = pop_stacking_context; | 
					
						
							|  |  |  |                 (void)clip_frames_stack.take_last(); | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2024-02-14 16:36:42 +01:00
										 |  |  |             continue; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-07-24 16:48:32 +03:00
										 |  |  | #define HANDLE_COMMAND(command_type, executor_method) \
 | 
					
						
							|  |  |  |     if (command.has<command_type>()) {                \ | 
					
						
							|  |  |  |         executor_method(command.get<command_type>()); \ | 
					
						
							| 
									
										
										
										
											2024-05-27 14:54:18 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // clang-format off
 | 
					
						
							|  |  |  |         HANDLE_COMMAND(DrawGlyphRun, draw_glyph_run) | 
					
						
							|  |  |  |         else HANDLE_COMMAND(FillRect, fill_rect) | 
					
						
							| 
									
										
										
										
											2024-09-25 15:44:58 +02:00
										 |  |  |         else HANDLE_COMMAND(DrawPaintingSurface, draw_painting_surface) | 
					
						
							| 
									
										
										
										
											2024-05-27 14:54:18 +01:00
										 |  |  |         else HANDLE_COMMAND(DrawScaledImmutableBitmap, draw_scaled_immutable_bitmap) | 
					
						
							| 
									
										
										
										
											2024-07-23 15:36:28 +03:00
										 |  |  |         else HANDLE_COMMAND(DrawRepeatedImmutableBitmap, draw_repeated_immutable_bitmap) | 
					
						
							| 
									
										
										
										
											2024-06-10 14:18:32 +03:00
										 |  |  |         else HANDLE_COMMAND(AddClipRect, add_clip_rect) | 
					
						
							|  |  |  |         else HANDLE_COMMAND(Save, save) | 
					
						
							| 
									
										
										
										
											2025-03-29 23:12:11 +01:00
										 |  |  |         else HANDLE_COMMAND(SaveLayer, save_layer) | 
					
						
							| 
									
										
										
										
											2024-06-10 14:18:32 +03:00
										 |  |  |         else HANDLE_COMMAND(Restore, restore) | 
					
						
							| 
									
										
										
										
											2024-10-11 15:01:16 +02:00
										 |  |  |         else HANDLE_COMMAND(Translate, translate) | 
					
						
							| 
									
										
										
										
											2024-05-27 14:54:18 +01:00
										 |  |  |         else HANDLE_COMMAND(PushStackingContext, push_stacking_context) | 
					
						
							|  |  |  |         else HANDLE_COMMAND(PopStackingContext, pop_stacking_context) | 
					
						
							|  |  |  |         else HANDLE_COMMAND(PaintLinearGradient, paint_linear_gradient) | 
					
						
							|  |  |  |         else HANDLE_COMMAND(PaintRadialGradient, paint_radial_gradient) | 
					
						
							|  |  |  |         else HANDLE_COMMAND(PaintConicGradient, paint_conic_gradient) | 
					
						
							|  |  |  |         else HANDLE_COMMAND(PaintOuterBoxShadow, paint_outer_box_shadow) | 
					
						
							|  |  |  |         else HANDLE_COMMAND(PaintInnerBoxShadow, paint_inner_box_shadow) | 
					
						
							|  |  |  |         else HANDLE_COMMAND(PaintTextShadow, paint_text_shadow) | 
					
						
							|  |  |  |         else HANDLE_COMMAND(FillRectWithRoundedCorners, fill_rect_with_rounded_corners) | 
					
						
							| 
									
										
										
										
											2025-08-02 21:16:51 +02:00
										 |  |  |         else HANDLE_COMMAND(FillPath, fill_path) | 
					
						
							| 
									
										
										
										
											2025-08-02 20:04:12 +02:00
										 |  |  |         else HANDLE_COMMAND(StrokePath, stroke_path) | 
					
						
							| 
									
										
										
										
											2024-05-27 14:54:18 +01:00
										 |  |  |         else HANDLE_COMMAND(DrawEllipse, draw_ellipse) | 
					
						
							|  |  |  |         else HANDLE_COMMAND(FillEllipse, fill_ellipse) | 
					
						
							|  |  |  |         else HANDLE_COMMAND(DrawLine, draw_line) | 
					
						
							|  |  |  |         else HANDLE_COMMAND(ApplyBackdropFilter, apply_backdrop_filter) | 
					
						
							|  |  |  |         else HANDLE_COMMAND(DrawRect, draw_rect) | 
					
						
							| 
									
										
										
										
											2024-07-29 14:13:34 +03:00
										 |  |  |         else HANDLE_COMMAND(AddRoundedRectClip, add_rounded_rect_clip) | 
					
						
							| 
									
										
										
										
											2024-08-06 15:26:47 +03:00
										 |  |  |         else HANDLE_COMMAND(AddMask, add_mask) | 
					
						
							| 
									
										
										
										
											2024-08-17 18:56:56 +02:00
										 |  |  |         else HANDLE_COMMAND(PaintScrollBar, paint_scrollbar) | 
					
						
							| 
									
										
										
										
											2024-08-08 14:17:54 +03:00
										 |  |  |         else HANDLE_COMMAND(PaintNestedDisplayList, paint_nested_display_list) | 
					
						
							| 
									
										
										
										
											2024-10-09 02:57:57 +02:00
										 |  |  |         else HANDLE_COMMAND(ApplyOpacity, apply_opacity) | 
					
						
							| 
									
										
										
										
											2025-01-22 09:50:49 +01:00
										 |  |  |         else HANDLE_COMMAND(ApplyCompositeAndBlendingOperator, apply_composite_and_blending_operator) | 
					
						
							| 
									
										
										
										
											2025-05-11 12:44:54 +02:00
										 |  |  |         else HANDLE_COMMAND(ApplyFilter, apply_filters) | 
					
						
							| 
									
										
										
										
											2024-10-09 02:57:57 +02:00
										 |  |  |         else HANDLE_COMMAND(ApplyTransform, apply_transform) | 
					
						
							|  |  |  |         else HANDLE_COMMAND(ApplyMaskBitmap, apply_mask_bitmap) | 
					
						
							| 
									
										
										
										
											2024-05-27 14:54:18 +01:00
										 |  |  |         else VERIFY_NOT_REACHED(); | 
					
						
							|  |  |  |         // clang-format on
 | 
					
						
							| 
									
										
										
										
											2024-02-14 16:36:42 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2025-01-29 10:24:57 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-07-13 03:55:24 +02:00
										 |  |  |     while (!clip_frames_stack.is_empty()) { | 
					
						
							|  |  |  |         if (auto clip_frame = clip_frames_stack.take_last()) { | 
					
						
							|  |  |  |             remove_clip_frame(*clip_frame); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-04-02 22:48:15 +02:00
										 |  |  |     if (surface) | 
					
						
							|  |  |  |         flush(); | 
					
						
							| 
									
										
										
										
											2024-02-14 16:36:42 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } |