CanvasPaintable.cpp 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*
  2. * Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #include <LibWeb/Painting/CanvasPaintable.h>
  7. namespace Web::Painting {
  8. NonnullRefPtr<CanvasPaintable> CanvasPaintable::create(Layout::CanvasBox const& layout_box)
  9. {
  10. return adopt_ref(*new CanvasPaintable(layout_box));
  11. }
  12. CanvasPaintable::CanvasPaintable(Layout::CanvasBox const& layout_box)
  13. : PaintableBox(layout_box)
  14. {
  15. }
  16. Layout::CanvasBox const& CanvasPaintable::layout_box() const
  17. {
  18. return static_cast<Layout::CanvasBox const&>(layout_node());
  19. }
  20. void CanvasPaintable::paint(PaintContext& context, PaintPhase phase) const
  21. {
  22. if (!layout_box().is_visible())
  23. return;
  24. PaintableBox::paint(context, phase);
  25. if (phase == PaintPhase::Foreground) {
  26. // FIXME: This should be done at a different level. Also rect() does not include padding etc!
  27. if (!context.viewport_rect().intersects(enclosing_int_rect(absolute_rect())))
  28. return;
  29. if (layout_box().dom_node().bitmap())
  30. context.painter().draw_scaled_bitmap(absolute_rect().to_rounded<int>(), *layout_box().dom_node().bitmap(), layout_box().dom_node().bitmap()->rect(), 1.0f, to_gfx_scaling_mode(computed_values().image_rendering()));
  31. }
  32. }
  33. }