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

Lagom: Make BMP fuzzer look like the other image loader fuzzers

This commit is contained in:
Nico Weber 2020-11-25 09:51:31 -05:00 committed by Andreas Kling
parent 4f12efe191
commit ec4c2f971b
3 changed files with 10 additions and 9 deletions

View file

@ -26,13 +26,13 @@
#pragma once
#include <AK/Vector.h>
#include <LibGfx/Bitmap.h>
#include <LibGfx/ImageDecoder.h>
namespace Gfx {
RefPtr<Gfx::Bitmap> load_bmp(const StringView& path);
RefPtr<Gfx::Bitmap> load_bmp_from_memory(const u8*, size_t);
struct BMPLoadingContext;