1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 23:17:46 +00:00

LibGfx: Remove now-unused load_gif_from_memory()

This commit is contained in:
Andreas Kling 2021-11-11 11:45:32 +01:00
parent 880fafd2c5
commit 2bd0ef0c76
2 changed files with 0 additions and 12 deletions

View file

@ -6,14 +6,11 @@
#pragma once
#include <AK/String.h>
#include <LibGfx/Bitmap.h>
#include <LibGfx/ImageDecoder.h>
namespace Gfx {
RefPtr<Gfx::Bitmap> load_gif_from_memory(u8 const*, size_t, String const& mmap_name = "<memory>");
struct GIFLoadingContext;
class GIFImageDecoderPlugin final : public ImageDecoderPlugin {