1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 06:47:34 +00:00

LibGfx: Remove ancient unused NO_FPU macros

This commit is contained in:
Andreas Kling 2021-08-18 11:03:57 +02:00
parent 0ed2a03450
commit 2432c5264b
2 changed files with 8 additions and 16 deletions

View file

@ -228,10 +228,6 @@ void Painter::fill_rect_with_gradient(Orientation orientation, const IntRect& a_
return;
}
#ifdef NO_FPU
return fill_rect(a_rect, gradient_start);
#endif
auto rect = to_physical(a_rect);
auto clipped_rect = IntRect::intersection(rect, clip_rect() * scale());
if (clipped_rect.is_empty())