Remove Utility module and move its content to Core and TextRenderer modules

This commit is contained in:
SirLynix
2024-02-10 22:46:53 +01:00
committed by Jérôme Leclercq
parent 965a00182c
commit e64c2b036e
364 changed files with 2336 additions and 2516 deletions

View File

@@ -4,7 +4,7 @@
#include <Nazara/Platform/SDL2/CursorImpl.hpp>
#include <Nazara/Core/ErrorFlags.hpp>
#include <Nazara/Utility/PixelFormat.hpp>
#include <Nazara/Core/PixelFormat.hpp>
#include <array>
#include <Nazara/Platform/Debug.hpp>

View File

@@ -8,9 +8,9 @@
#define NAZARA_PLATFORM_SDL2_CURSORIMPL_HPP
#include <NazaraUtils/Prerequisites.hpp>
#include <Nazara/Core/Image.hpp>
#include <Nazara/Math/Vector2.hpp>
#include <Nazara/Platform/Enums.hpp>
#include <Nazara/Utility/Image.hpp>
#include <NazaraUtils/MovablePtr.hpp>
#include <SDL_mouse.h>

View File

@@ -4,8 +4,8 @@
#include <Nazara/Platform/SDL2/IconImpl.hpp>
#include <Nazara/Core/ErrorFlags.hpp>
#include <Nazara/Utility/Image.hpp>
#include <Nazara/Utility/PixelFormat.hpp>
#include <Nazara/Core/Image.hpp>
#include <Nazara/Core/PixelFormat.hpp>
#include <Nazara/Platform/Debug.hpp>
namespace Nz

View File

@@ -8,7 +8,7 @@
#define NAZARA_PLATFORM_SDL2_ICONIMPL_HPP
#include <NazaraUtils/Prerequisites.hpp>
#include <Nazara/Utility/Image.hpp>
#include <Nazara/Core/Image.hpp>
#include <NazaraUtils/MovablePtr.hpp>
#include <SDL_surface.h>

View File

@@ -5,13 +5,13 @@
#include <Nazara/Platform/SDL2/WindowImpl.hpp>
#include <Nazara/Core/Error.hpp>
#include <Nazara/Core/ErrorFlags.hpp>
#include <Nazara/Core/Image.hpp>
#include <Nazara/Platform/Config.hpp>
#include <Nazara/Platform/Cursor.hpp>
#include <Nazara/Platform/Icon.hpp>
#include <Nazara/Platform/SDL2/CursorImpl.hpp>
#include <Nazara/Platform/SDL2/IconImpl.hpp>
#include <Nazara/Platform/SDL2/SDLHelper.hpp>
#include <Nazara/Utility/Image.hpp>
#include <SDL.h>
#ifdef NAZARA_PLATFORM_MACOS