1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 09:48:11 +00:00

LibGfx: Add Bitmap::visually_equals()

This commit is contained in:
Jelle Raaijmakers 2022-04-15 01:07:15 +02:00 committed by Ali Mohammad Pur
parent 8b370f988b
commit dad829de50
2 changed files with 20 additions and 0 deletions

View file

@ -582,4 +582,22 @@ Vector<ARGB32> Bitmap::palette_to_vector() const
vector.unchecked_append(palette_color(i).value());
return vector;
}
bool Bitmap::visually_equals(Bitmap const& other) const
{
auto own_width = width();
auto own_height = height();
if (other.width() != own_width || other.height() != own_height)
return false;
for (auto y = 0; y < own_height; ++y) {
for (auto x = 0; x < own_width; ++x) {
if (get_pixel(x, y) != other.get_pixel(x, y))
return false;
}
}
return true;
}
}