diff options
Diffstat (limited to 'include/cru/platform/graphics')
-rw-r--r-- | include/cru/platform/graphics/Base.h (renamed from include/cru/platform/graphics/Base.hpp) | 8 | ||||
-rw-r--r-- | include/cru/platform/graphics/Brush.h (renamed from include/cru/platform/graphics/Brush.hpp) | 2 | ||||
-rw-r--r-- | include/cru/platform/graphics/Factory.h (renamed from include/cru/platform/graphics/Factory.hpp) | 14 | ||||
-rw-r--r-- | include/cru/platform/graphics/Font.h (renamed from include/cru/platform/graphics/Font.hpp) | 2 | ||||
-rw-r--r-- | include/cru/platform/graphics/Geometry.h (renamed from include/cru/platform/graphics/Geometry.hpp) | 2 | ||||
-rw-r--r-- | include/cru/platform/graphics/Image.h (renamed from include/cru/platform/graphics/Image.hpp) | 2 | ||||
-rw-r--r-- | include/cru/platform/graphics/ImageFactory.h (renamed from include/cru/platform/graphics/ImageFactory.hpp) | 6 | ||||
-rw-r--r-- | include/cru/platform/graphics/NullPainter.h (renamed from include/cru/platform/graphics/NullPainter.hpp) | 4 | ||||
-rw-r--r-- | include/cru/platform/graphics/Painter.h (renamed from include/cru/platform/graphics/Painter.hpp) | 2 | ||||
-rw-r--r-- | include/cru/platform/graphics/Resource.h (renamed from include/cru/platform/graphics/Resource.hpp) | 2 | ||||
-rw-r--r-- | include/cru/platform/graphics/TextLayout.h (renamed from include/cru/platform/graphics/TextLayout.hpp) | 2 | ||||
-rw-r--r-- | include/cru/platform/graphics/util/Painter.h (renamed from include/cru/platform/graphics/util/Painter.hpp) | 2 |
12 files changed, 24 insertions, 24 deletions
diff --git a/include/cru/platform/graphics/Base.hpp b/include/cru/platform/graphics/Base.h index 416f0df4..a134fb33 100644 --- a/include/cru/platform/graphics/Base.hpp +++ b/include/cru/platform/graphics/Base.h @@ -1,8 +1,8 @@ #pragma once -#include "../Color.hpp" -#include "../GraphicsBase.hpp" -#include "../Matrix.hpp" -#include "../Resource.hpp" +#include "../Color.h" +#include "../GraphicsBase.h" +#include "../Matrix.h" +#include "../Resource.h" #include <memory> diff --git a/include/cru/platform/graphics/Brush.hpp b/include/cru/platform/graphics/Brush.h index 772edd5c..6f4a6902 100644 --- a/include/cru/platform/graphics/Brush.hpp +++ b/include/cru/platform/graphics/Brush.h @@ -1,5 +1,5 @@ #pragma once -#include "Resource.hpp" +#include "Resource.h" namespace cru::platform::graphics { struct CRU_PLATFORM_GRAPHICS_API IBrush : virtual IGraphicsResource {}; diff --git a/include/cru/platform/graphics/Factory.hpp b/include/cru/platform/graphics/Factory.h index 7aa88ebd..d197d821 100644 --- a/include/cru/platform/graphics/Factory.hpp +++ b/include/cru/platform/graphics/Factory.h @@ -1,12 +1,12 @@ #pragma once -#include "Resource.hpp" +#include "Resource.h" -#include "Brush.hpp" -#include "Font.hpp" -#include "Geometry.hpp" -#include "Image.hpp" -#include "ImageFactory.hpp" -#include "TextLayout.hpp" +#include "Brush.h" +#include "Font.h" +#include "Geometry.h" +#include "Image.h" +#include "ImageFactory.h" +#include "TextLayout.h" namespace cru::platform::graphics { // Entry point of the graphics module. diff --git a/include/cru/platform/graphics/Font.hpp b/include/cru/platform/graphics/Font.h index 2d1bc9a6..24c35f7c 100644 --- a/include/cru/platform/graphics/Font.hpp +++ b/include/cru/platform/graphics/Font.h @@ -1,5 +1,5 @@ #pragma once -#include "Resource.hpp" +#include "Resource.h" namespace cru::platform::graphics { struct CRU_PLATFORM_GRAPHICS_API IFont : virtual IGraphicsResource { diff --git a/include/cru/platform/graphics/Geometry.hpp b/include/cru/platform/graphics/Geometry.h index e83d1c51..732fc547 100644 --- a/include/cru/platform/graphics/Geometry.hpp +++ b/include/cru/platform/graphics/Geometry.h @@ -1,5 +1,5 @@ #pragma once -#include "Resource.hpp" +#include "Resource.h" namespace cru::platform::graphics { struct CRU_PLATFORM_GRAPHICS_API IGeometry : virtual IGraphicsResource { diff --git a/include/cru/platform/graphics/Image.hpp b/include/cru/platform/graphics/Image.h index e8bf6671..51e27678 100644 --- a/include/cru/platform/graphics/Image.hpp +++ b/include/cru/platform/graphics/Image.h @@ -1,5 +1,5 @@ #pragma once -#include "Resource.hpp" +#include "Resource.h" namespace cru::platform::graphics { struct CRU_PLATFORM_GRAPHICS_API IImage : public virtual IGraphicsResource { diff --git a/include/cru/platform/graphics/ImageFactory.hpp b/include/cru/platform/graphics/ImageFactory.h index 3997f783..2a7902b2 100644 --- a/include/cru/platform/graphics/ImageFactory.hpp +++ b/include/cru/platform/graphics/ImageFactory.h @@ -1,7 +1,7 @@ #pragma once -#include "Image.hpp" -#include "Resource.hpp" -#include "cru/common/io/Stream.hpp" +#include "Image.h" +#include "Resource.h" +#include "cru/common/io/Stream.h" namespace cru::platform::graphics { struct CRU_PLATFORM_GRAPHICS_API IImageFactory diff --git a/include/cru/platform/graphics/NullPainter.hpp b/include/cru/platform/graphics/NullPainter.h index 54c610c1..2c6e6cb1 100644 --- a/include/cru/platform/graphics/NullPainter.hpp +++ b/include/cru/platform/graphics/NullPainter.h @@ -1,6 +1,6 @@ #pragma once -#include "Painter.hpp" -#include "cru/common/Base.hpp" +#include "Painter.h" +#include "cru/common/Base.h" namespace cru::platform::graphics { class CRU_PLATFORM_GRAPHICS_API NullPainter : public Object, diff --git a/include/cru/platform/graphics/Painter.hpp b/include/cru/platform/graphics/Painter.h index 171e6260..38ff8849 100644 --- a/include/cru/platform/graphics/Painter.hpp +++ b/include/cru/platform/graphics/Painter.h @@ -1,5 +1,5 @@ #pragma once -#include "Resource.hpp" +#include "Resource.h" namespace cru::platform::graphics { diff --git a/include/cru/platform/graphics/Resource.hpp b/include/cru/platform/graphics/Resource.h index e559b0e9..ab1b8de6 100644 --- a/include/cru/platform/graphics/Resource.hpp +++ b/include/cru/platform/graphics/Resource.h @@ -1,5 +1,5 @@ #pragma once -#include "Base.hpp" +#include "Base.h" namespace cru::platform::graphics { struct IGraphicsFactory; diff --git a/include/cru/platform/graphics/TextLayout.hpp b/include/cru/platform/graphics/TextLayout.h index f9ccc824..e060186b 100644 --- a/include/cru/platform/graphics/TextLayout.hpp +++ b/include/cru/platform/graphics/TextLayout.h @@ -1,5 +1,5 @@ #pragma once -#include "Resource.hpp" +#include "Resource.h" #include <string> #include <vector> diff --git a/include/cru/platform/graphics/util/Painter.hpp b/include/cru/platform/graphics/util/Painter.h index 2e0fbb51..e36d5c55 100644 --- a/include/cru/platform/graphics/util/Painter.hpp +++ b/include/cru/platform/graphics/util/Painter.h @@ -1,5 +1,5 @@ #pragma once -#include "../Painter.hpp" +#include "../Painter.h" #include <functional> #include <type_traits> |