summaryrefslogtreecommitdiff
path: root/Userland/Demos
diff options
context:
space:
mode:
authorLucas CHOLLET <lucas.chollet@free.fr>2023-03-21 14:58:06 -0400
committerAndreas Kling <kling@serenityos.org>2023-03-21 22:39:25 +0100
commit496b7ffb2b58043a80d90b8b8f44cab1eaa874e8 (patch)
tree1fca47aa8123c9d3e110d45c8af637f95241dcd5 /Userland/Demos
parent752f06f228119a70c59e844dcd2b9560e757b0ff (diff)
downloadserenity-496b7ffb2b58043a80d90b8b8f44cab1eaa874e8.zip
LibGfx: Move all image loaders and writers to a subdirectory
Diffstat (limited to 'Userland/Demos')
-rw-r--r--Userland/Demos/Mandelbrot/Mandelbrot.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Userland/Demos/Mandelbrot/Mandelbrot.cpp b/Userland/Demos/Mandelbrot/Mandelbrot.cpp
index 405481e1ad..b3c3064d21 100644
--- a/Userland/Demos/Mandelbrot/Mandelbrot.cpp
+++ b/Userland/Demos/Mandelbrot/Mandelbrot.cpp
@@ -16,10 +16,10 @@
#include <LibGUI/Painter.h>
#include <LibGUI/Widget.h>
#include <LibGUI/Window.h>
-#include <LibGfx/BMPWriter.h>
#include <LibGfx/Bitmap.h>
-#include <LibGfx/PNGWriter.h>
-#include <LibGfx/QOIWriter.h>
+#include <LibGfx/ImageFormats/BMPWriter.h>
+#include <LibGfx/ImageFormats/PNGWriter.h>
+#include <LibGfx/ImageFormats/QOIWriter.h>
#include <LibMain/Main.h>
#include <unistd.h>