Fix includes in source/graphics

Make include-what-you-use happy with files in source/graphics and fix
what needs to be fixed.

Ref: #8086
Signed-off-by: Ralph Sennhauser <ralph.sennhauser@gmail.com>
This commit is contained in:
Ralph Sennhauser
2025-07-28 20:13:46 +02:00
parent 07309450fc
commit 621a9c422f
37 changed files with 273 additions and 109 deletions
+7 -1
View File
@@ -20,17 +20,23 @@
#include "MapIO.h"
#include "graphics/Patch.h"
#include "lib/alignment.h"
#include "lib/allocators/shared_ptr.h"
#include "lib/file/file.h"
#include "lib/file/vfs/vfs.h"
#include "lib/file/vfs/vfs_path.h"
#include "lib/os_path.h"
#include "lib/posix/posix_types.h"
#include "lib/status.h"
#include "lib/tex/tex.h"
#include "maths/MathUtil.h"
#include "ps/Filesystem.h"
#include <fcntl.h>
#include <algorithm>
#include <cstddef>
#include <fcntl.h>
#include <memory>
#include <string>
#include <vector>
Status ParseHeightmapImage(const std::shared_ptr<u8>& fileData, size_t fileSize, std::vector<u16>& heightmap);