summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGfx/PPMLoader.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-11-11 11:32:22 +0100
committerAndreas Kling <kling@serenityos.org>2021-11-11 11:32:22 +0100
commit10add3f4c2cddc0d603b62ec79bfc54b47a3f53b (patch)
tree167928cafed5fd09602be0fdb3349e51acd52e49 /Userland/Libraries/LibGfx/PPMLoader.h
parent09780ba7a9432891096f009a7092a9c8f753ccea (diff)
downloadserenity-10add3f4c2cddc0d603b62ec79bfc54b47a3f53b.zip
LibGfx: Remove load_FORMAT() image codec wrappers
We had a bunch of old unused wrapper functions for each image codec that would load a supported image with a given path. Nobody actually used them, so let's just get rid of load_png(), load_gif(), etc.
Diffstat (limited to 'Userland/Libraries/LibGfx/PPMLoader.h')
-rw-r--r--Userland/Libraries/LibGfx/PPMLoader.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/Userland/Libraries/LibGfx/PPMLoader.h b/Userland/Libraries/LibGfx/PPMLoader.h
index 82824a7d8f..bcbe7e90b8 100644
--- a/Userland/Libraries/LibGfx/PPMLoader.h
+++ b/Userland/Libraries/LibGfx/PPMLoader.h
@@ -12,7 +12,6 @@
namespace Gfx {
-RefPtr<Gfx::Bitmap> load_ppm(StringView path);
RefPtr<Gfx::Bitmap> load_ppm_from_memory(u8 const*, size_t, String const& mmap_name = "<memory>");
struct PPMLoadingContext;