summaryrefslogtreecommitdiff
path: root/Tests
diff options
context:
space:
mode:
authorSimon Wanner <skyrising@pvpctutorials.de>2022-04-09 09:28:38 +0200
committerAndreas Kling <kling@serenityos.org>2022-04-09 23:48:18 +0200
commit206d6ece55e44117fd49525eeca5bd28d83ac5eb (patch)
tree42f45ba540faffd38608380dad02d7614c6e7e5a /Tests
parent6f8fd91f225c9eb3e5faeda1aaf6cee1e1f12cc9 (diff)
downloadserenity-206d6ece55e44117fd49525eeca5bd28d83ac5eb.zip
LibGfx: Move other font-related files to LibGfx/Font/
Diffstat (limited to 'Tests')
-rw-r--r--Tests/LibGL/TestRender.cpp2
-rw-r--r--Tests/LibGfx/BenchmarkGfxPainter.cpp2
-rw-r--r--Tests/LibGfx/TestFontHandling.cpp4
3 files changed, 4 insertions, 4 deletions
diff --git a/Tests/LibGL/TestRender.cpp b/Tests/LibGL/TestRender.cpp
index 0beabdaf3a..a6bd64d982 100644
--- a/Tests/LibGL/TestRender.cpp
+++ b/Tests/LibGL/TestRender.cpp
@@ -12,7 +12,7 @@
#include <LibGL/GLContext.h>
#include <LibGfx/BMPWriter.h>
#include <LibGfx/Bitmap.h>
-#include <LibGfx/FontDatabase.h>
+#include <LibGfx/Font/FontDatabase.h>
#include <fcntl.h>
#include <unistd.h>
diff --git a/Tests/LibGfx/BenchmarkGfxPainter.cpp b/Tests/LibGfx/BenchmarkGfxPainter.cpp
index 000de1cfd7..3b8fce1e18 100644
--- a/Tests/LibGfx/BenchmarkGfxPainter.cpp
+++ b/Tests/LibGfx/BenchmarkGfxPainter.cpp
@@ -7,7 +7,7 @@
#include <LibTest/TestCase.h>
#include <LibGfx/Bitmap.h>
-#include <LibGfx/FontDatabase.h>
+#include <LibGfx/Font/FontDatabase.h>
#include <LibGfx/Painter.h>
#include <stdio.h>
diff --git a/Tests/LibGfx/TestFontHandling.cpp b/Tests/LibGfx/TestFontHandling.cpp
index 19b8b927aa..2efdb070fb 100644
--- a/Tests/LibGfx/TestFontHandling.cpp
+++ b/Tests/LibGfx/TestFontHandling.cpp
@@ -5,8 +5,8 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
-#include <LibGfx/BitmapFont.h>
-#include <LibGfx/FontDatabase.h>
+#include <LibGfx/Font/BitmapFont.h>
+#include <LibGfx/Font/FontDatabase.h>
#include <LibTest/TestCase.h>
#include <stdio.h>
#include <stdlib.h>