mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 09:02:43 +00:00 
			
		
		
		
	 ab19b092ed
			
		
	
	
		ab19b092ed
		
	
	
	
	
		
			
			This replaces the usage of `rounded_int_rect`, whose name did not accurately reflect the rounding operation happening. For example, the position of the rect was not rounded but floored, and the size was pulled through `roundf` before casting to `int` which could result in inadvertent flooring if the resulting floating point could not exactly represent the rounded value.
		
			
				
	
	
		
			43 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #include <LibWeb/Painting/CanvasPaintable.h>
 | |
| 
 | |
| namespace Web::Painting {
 | |
| 
 | |
| NonnullRefPtr<CanvasPaintable> CanvasPaintable::create(Layout::CanvasBox const& layout_box)
 | |
| {
 | |
|     return adopt_ref(*new CanvasPaintable(layout_box));
 | |
| }
 | |
| 
 | |
| CanvasPaintable::CanvasPaintable(Layout::CanvasBox const& layout_box)
 | |
|     : PaintableBox(layout_box)
 | |
| {
 | |
| }
 | |
| 
 | |
| Layout::CanvasBox const& CanvasPaintable::layout_box() const
 | |
| {
 | |
|     return static_cast<Layout::CanvasBox const&>(layout_node());
 | |
| }
 | |
| 
 | |
| void CanvasPaintable::paint(PaintContext& context, PaintPhase phase) const
 | |
| {
 | |
|     if (!layout_box().is_visible())
 | |
|         return;
 | |
| 
 | |
|     PaintableBox::paint(context, phase);
 | |
| 
 | |
|     if (phase == PaintPhase::Foreground) {
 | |
|         // FIXME: This should be done at a different level. Also rect() does not include padding etc!
 | |
|         if (!context.viewport_rect().intersects(enclosing_int_rect(absolute_rect())))
 | |
|             return;
 | |
| 
 | |
|         if (layout_box().dom_node().bitmap())
 | |
|             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()));
 | |
|     }
 | |
| }
 | |
| 
 | |
| }
 |