aboutsummaryrefslogtreecommitdiff
path: root/include/cru/platform/graph
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2020-05-24 01:40:02 +0800
committercrupest <crupest@outlook.com>2020-05-24 01:40:02 +0800
commitd86a71f79afe0e4dac768f61d6bff690567aca5b (patch)
tree4957e9a64c77680deb07201fbd879bf036616dae /include/cru/platform/graph
parentf3a8fd608a9776ef0a5f547da918a32cf6074060 (diff)
downloadcru-d86a71f79afe0e4dac768f61d6bff690567aca5b.tar.gz
cru-d86a71f79afe0e4dac768f61d6bff690567aca5b.tar.bz2
cru-d86a71f79afe0e4dac768f61d6bff690567aca5b.zip
...
Diffstat (limited to 'include/cru/platform/graph')
-rw-r--r--include/cru/platform/graph/TextLayout.hpp (renamed from include/cru/platform/graph/text_layout.hpp)2
-rw-r--r--include/cru/platform/graph/base.hpp6
-rw-r--r--include/cru/platform/graph/brush.hpp2
-rw-r--r--include/cru/platform/graph/factory.hpp10
-rw-r--r--include/cru/platform/graph/font.hpp2
-rw-r--r--include/cru/platform/graph/geometry.hpp2
-rw-r--r--include/cru/platform/graph/painter.hpp2
-rw-r--r--include/cru/platform/graph/resource.hpp2
-rw-r--r--include/cru/platform/graph/util/painter.hpp2
9 files changed, 15 insertions, 15 deletions
diff --git a/include/cru/platform/graph/text_layout.hpp b/include/cru/platform/graph/TextLayout.hpp
index d91834c0..4086ac56 100644
--- a/include/cru/platform/graph/text_layout.hpp
+++ b/include/cru/platform/graph/TextLayout.hpp
@@ -1,5 +1,5 @@
#pragma once
-#include "resource.hpp"
+#include "Resource.hpp"
#include <string>
#include <vector>
diff --git a/include/cru/platform/graph/base.hpp b/include/cru/platform/graph/base.hpp
index 002c2f51..61cfc5ef 100644
--- a/include/cru/platform/graph/base.hpp
+++ b/include/cru/platform/graph/base.hpp
@@ -1,7 +1,7 @@
#pragma once
-#include "../graph_base.hpp"
-#include "../matrix.hpp"
-#include "../resource.hpp"
+#include "../GraphBase.hpp"
+#include "../Matrix.hpp"
+#include "../Resource.hpp"
#include <memory>
diff --git a/include/cru/platform/graph/brush.hpp b/include/cru/platform/graph/brush.hpp
index af7a1dec..e67384de 100644
--- a/include/cru/platform/graph/brush.hpp
+++ b/include/cru/platform/graph/brush.hpp
@@ -1,5 +1,5 @@
#pragma once
-#include "resource.hpp"
+#include "Resource.hpp"
namespace cru::platform::graph {
struct IBrush : virtual IGraphResource {};
diff --git a/include/cru/platform/graph/factory.hpp b/include/cru/platform/graph/factory.hpp
index 0ed45161..0a425d15 100644
--- a/include/cru/platform/graph/factory.hpp
+++ b/include/cru/platform/graph/factory.hpp
@@ -1,10 +1,10 @@
#pragma once
-#include "resource.hpp"
+#include "Resource.hpp"
-#include "brush.hpp"
-#include "font.hpp"
-#include "geometry.hpp"
-#include "text_layout.hpp"
+#include "Brush.hpp"
+#include "Font.hpp"
+#include "Geometry.hpp"
+#include "TextLayout.hpp"
#include <string>
#include <string_view>
diff --git a/include/cru/platform/graph/font.hpp b/include/cru/platform/graph/font.hpp
index d0aa2d28..182cc15b 100644
--- a/include/cru/platform/graph/font.hpp
+++ b/include/cru/platform/graph/font.hpp
@@ -1,5 +1,5 @@
#pragma once
-#include "resource.hpp"
+#include "Resource.hpp"
namespace cru::platform::graph {
struct IFont : virtual IGraphResource {
diff --git a/include/cru/platform/graph/geometry.hpp b/include/cru/platform/graph/geometry.hpp
index 85ffd3f6..354efd97 100644
--- a/include/cru/platform/graph/geometry.hpp
+++ b/include/cru/platform/graph/geometry.hpp
@@ -1,5 +1,5 @@
#pragma once
-#include "resource.hpp"
+#include "Resource.hpp"
namespace cru::platform::graph {
struct IGeometry : virtual IGraphResource {
diff --git a/include/cru/platform/graph/painter.hpp b/include/cru/platform/graph/painter.hpp
index b6eb5452..27ae420b 100644
--- a/include/cru/platform/graph/painter.hpp
+++ b/include/cru/platform/graph/painter.hpp
@@ -1,5 +1,5 @@
#pragma once
-#include "resource.hpp"
+#include "Resource.hpp"
namespace cru::platform::graph {
diff --git a/include/cru/platform/graph/resource.hpp b/include/cru/platform/graph/resource.hpp
index 255865eb..8859360c 100644
--- a/include/cru/platform/graph/resource.hpp
+++ b/include/cru/platform/graph/resource.hpp
@@ -1,5 +1,5 @@
#pragma once
-#include "base.hpp"
+#include "Base.hpp"
namespace cru::platform::graph {
struct IGraphFactory;
diff --git a/include/cru/platform/graph/util/painter.hpp b/include/cru/platform/graph/util/painter.hpp
index 72d96bc1..f9aec027 100644
--- a/include/cru/platform/graph/util/painter.hpp
+++ b/include/cru/platform/graph/util/painter.hpp
@@ -1,5 +1,5 @@
#pragma once
-#include "../painter.hpp"
+#include "../Painter.hpp"
#include <functional>
#include <type_traits>