1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:07:36 +00:00

LibGfx: Make BMPWriter::dump() not take a RefPtr

This commit is contained in:
Nico Weber 2023-03-12 12:45:30 -04:00 committed by Jelle Raaijmakers
parent 833d0d95c9
commit a2ccf38f11
2 changed files with 11 additions and 11 deletions

View file

@ -30,7 +30,7 @@ public:
private:
BMPWriter() = default;
ByteBuffer dump(RefPtr<Bitmap const>, Options options);
ByteBuffer dump(Bitmap const&, Options options);
enum class Compression : u32 {
BI_RGB = 0,