aboutsummaryrefslogtreecommitdiff
path: root/src/fb
diff options
context:
space:
mode:
authorvimene <vincent.menegaux@gmail.com>2025-12-10 20:40:42 +0100
committervimene <vincent.menegaux@gmail.com>2025-12-10 20:40:42 +0100
commit761604f9e4815e8f4355637ebb46052314cbed86 (patch)
treeb9cd6dde75ebf5897f8e67835522c6411d6ab7cb /src/fb
parentc666035bc6a51e4dd76daebefffaf8bbc951977c (diff)
downloadengine-761604f9e4815e8f4355637ebb46052314cbed86.tar.gz
renamed .h to .hpp
Diffstat (limited to 'src/fb')
-rw-r--r--src/fb/chfb.cpp10
-rw-r--r--src/fb/chfb.hpp (renamed from src/fb/chfb.h)4
-rw-r--r--src/fb/pixfb.cpp10
-rw-r--r--src/fb/pixfb.hpp (renamed from src/fb/pixfb.h)4
4 files changed, 14 insertions, 14 deletions
diff --git a/src/fb/chfb.cpp b/src/fb/chfb.cpp
index 8068d8f..9f293ed 100644
--- a/src/fb/chfb.cpp
+++ b/src/fb/chfb.cpp
@@ -1,10 +1,10 @@
-#include "fb/chfb.h"
+#include "fb/chfb.hpp"
#include <algorithm>
#include <cstdint>
-#include "math/vector.h"
-#include "math/quat.h"
-#include "o3d/vertex_data.h"
-#include "o3d/camera.h"
+#include "math/vector.hpp"
+#include "math/quat.hpp"
+#include "o3d/vertex_data.hpp"
+#include "o3d/camera.hpp"
using namespace engine::fb;
using
diff --git a/src/fb/chfb.h b/src/fb/chfb.hpp
index a866fef..8e47d6b 100644
--- a/src/fb/chfb.h
+++ b/src/fb/chfb.hpp
@@ -2,8 +2,8 @@
#define FB_CHFB_H
#include <vector>
-#include "math/vector.h"
-#include "o3d/vertex_data.h"
+#include "math/vector.hpp"
+#include "o3d/vertex_data.hpp"
namespace engine::fb {
diff --git a/src/fb/pixfb.cpp b/src/fb/pixfb.cpp
index d49566e..55c356f 100644
--- a/src/fb/pixfb.cpp
+++ b/src/fb/pixfb.cpp
@@ -1,10 +1,10 @@
-#include "fb/pixfb.h"
+#include "fb/pixfb.hpp"
#include <cstdint>
#include <algorithm>
-#include "math/vector.h"
-#include "math/quat.h"
-#include "o3d/vertex_data.h"
-#include "o3d/camera.h"
+#include "math/vector.hpp"
+#include "math/quat.hpp"
+#include "o3d/vertex_data.hpp"
+#include "o3d/camera.hpp"
using namespace engine::fb;
using
diff --git a/src/fb/pixfb.h b/src/fb/pixfb.hpp
index 81a7ac3..f7a7acb 100644
--- a/src/fb/pixfb.h
+++ b/src/fb/pixfb.hpp
@@ -3,8 +3,8 @@
#include <vector>
#include <cstdint>
-#include "math/vector.h"
-#include "o3d/vertex_data.h"
+#include "math/vector.hpp"
+#include "o3d/vertex_data.hpp"
namespace engine::fb {