1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 19:05:08 +00:00

LibGfx: Add PGM image file type support

This commit is contained in:
Hüseyin ASLITÜRK 2020-06-22 15:19:57 +03:00 committed by Andreas Kling
parent 57ef3b27ec
commit dc5b73c43a
6 changed files with 538 additions and 0 deletions

View file

@ -34,6 +34,7 @@
#include <LibGfx/ICOLoader.h>
#include <LibGfx/JPGLoader.h>
#include <LibGfx/PBMLoader.h>
#include <LibGfx/PGMLoader.h>
#include <LibGfx/PNGLoader.h>
#include <LibGfx/PPMLoader.h>
#include <LibGfx/ShareableBitmap.h>