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

LibGfx: Move all image loaders and writers to a subdirectory

This commit is contained in:
Lucas CHOLLET 2023-03-21 14:58:06 -04:00 committed by Andreas Kling
parent 752f06f228
commit 496b7ffb2b
73 changed files with 129 additions and 129 deletions

View file

@ -4,7 +4,7 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibGfx/BMPLoader.h>
#include <LibGfx/ImageFormats/BMPLoader.h>
#include <stdio.h>
extern "C" int LLVMFuzzerTestOneInput(uint8_t const* data, size_t size)

View file

@ -7,7 +7,7 @@
#include <AK/Debug.h>
#include <AK/DeprecatedString.h>
#include <AK/Format.h>
#include <LibGfx/GIFLoader.h>
#include <LibGfx/ImageFormats/GIFLoader.h>
#include <stddef.h>
#include <stdint.h>

View file

@ -4,7 +4,7 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibGfx/ICOLoader.h>
#include <LibGfx/ImageFormats/ICOLoader.h>
#include <stddef.h>
#include <stdint.h>

View file

@ -4,7 +4,7 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibGfx/JPEGLoader.h>
#include <LibGfx/ImageFormats/JPEGLoader.h>
#include <stddef.h>
#include <stdint.h>

View file

@ -4,7 +4,7 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibGfx/PBMLoader.h>
#include <LibGfx/ImageFormats/PBMLoader.h>
#include <stddef.h>
#include <stdint.h>

View file

@ -4,7 +4,7 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibGfx/PGMLoader.h>
#include <LibGfx/ImageFormats/PGMLoader.h>
#include <stddef.h>
#include <stdint.h>

View file

@ -4,7 +4,7 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibGfx/PNGLoader.h>
#include <LibGfx/ImageFormats/PNGLoader.h>
#include <stddef.h>
#include <stdint.h>

View file

@ -4,7 +4,7 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibGfx/PPMLoader.h>
#include <LibGfx/ImageFormats/PPMLoader.h>
#include <stddef.h>
#include <stdint.h>

View file

@ -4,7 +4,7 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibGfx/QOILoader.h>
#include <LibGfx/ImageFormats/QOILoader.h>
#include <stddef.h>
#include <stdint.h>

View file

@ -4,7 +4,7 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibGfx/TGALoader.h>
#include <LibGfx/ImageFormats/TGALoader.h>
#include <stddef.h>
#include <stdint.h>