aboutsummaryrefslogtreecommitdiff
path: root/src/o3d
diff options
context:
space:
mode:
authorvimene <vincent.menegaux@gmail.com>2026-01-12 22:30:16 +0100
committervimene <vincent.menegaux@gmail.com>2026-01-12 22:30:16 +0100
commitc6e180ed8ba897620327938dc19f6ee792860fd4 (patch)
treeff986a71639ba118d175b33ea1782b7f7f043891 /src/o3d
parentf9c6bd77af826423fba4aeec86b227ccd7102b4e (diff)
downloadengine-c6e180ed8ba897620327938dc19f6ee792860fd4.tar.gz
fixed wrong header guard
Diffstat (limited to 'src/o3d')
-rw-r--r--src/o3d/camera.hpp6
-rw-r--r--src/o3d/deriv_vertex.hpp6
-rw-r--r--src/o3d/obj3d.hpp6
-rw-r--r--src/o3d/scene.hpp6
-rw-r--r--src/o3d/tri.hpp6
-rw-r--r--src/o3d/tri_deriv.hpp6
-rw-r--r--src/o3d/vertex.hpp6
-rw-r--r--src/o3d/vertex_data.hpp6
8 files changed, 24 insertions, 24 deletions
diff --git a/src/o3d/camera.hpp b/src/o3d/camera.hpp
index b3588fb..eb10450 100644
--- a/src/o3d/camera.hpp
+++ b/src/o3d/camera.hpp
@@ -1,5 +1,5 @@
-#ifndef O3D_CAMERA_H
-#define O3D_CAMERA_H
+#ifndef O3D_CAMERA_HPP
+#define O3D_CAMERA_HPP
#include "math/mat4.hpp"
#include "math/tform.hpp"
@@ -21,4 +21,4 @@ struct Camera {
}
-#endif // O3D_CAMERA_H
+#endif // O3D_CAMERA_HPP
diff --git a/src/o3d/deriv_vertex.hpp b/src/o3d/deriv_vertex.hpp
index bc47780..6fc32e0 100644
--- a/src/o3d/deriv_vertex.hpp
+++ b/src/o3d/deriv_vertex.hpp
@@ -1,5 +1,5 @@
-#ifndef O3D_DERIV_VERTEX_H
-#define O3D_DERIV_VERTEX_H
+#ifndef O3D_DERIV_VERTEX_HPP
+#define O3D_DERIV_VERTEX_HPP
#include "math/vector.hpp"
@@ -18,4 +18,4 @@ struct DerivedVertex {
}
-#endif // O3D_DERIV_VERTEX_H
+#endif // O3D_DERIV_VERTEX_HPP
diff --git a/src/o3d/obj3d.hpp b/src/o3d/obj3d.hpp
index 295d129..3429d8c 100644
--- a/src/o3d/obj3d.hpp
+++ b/src/o3d/obj3d.hpp
@@ -1,5 +1,5 @@
-#ifndef O3D_OBJ3D_H
-#define O3D_OBJ3D_H
+#ifndef O3D_OBJ3D_HPP
+#define O3D_OBJ3D_HPP
#include <type_traits>
#include "math/tform.hpp"
@@ -14,4 +14,4 @@ struct Object3D {
}
-#endif // O3D_OBJ3D_H
+#endif // O3D_OBJ3D_HPP
diff --git a/src/o3d/scene.hpp b/src/o3d/scene.hpp
index 65008ac..bdac122 100644
--- a/src/o3d/scene.hpp
+++ b/src/o3d/scene.hpp
@@ -1,5 +1,5 @@
-#ifndef O3D_SCENE_H
-#define O3D_SCENE_H
+#ifndef O3D_SCENE_HPP
+#define O3D_SCENE_HPP
#include <vector>
#include <type_traits>
@@ -15,4 +15,4 @@ struct Scene {
}
-#endif // O3D_SCENE_H
+#endif // O3D_SCENE_HPP
diff --git a/src/o3d/tri.hpp b/src/o3d/tri.hpp
index 7538d22..712c135 100644
--- a/src/o3d/tri.hpp
+++ b/src/o3d/tri.hpp
@@ -1,5 +1,5 @@
-#ifndef O3D_TRI_H
-#define O3D_TRI_H
+#ifndef O3D_TRI_HPP
+#define O3D_TRI_HPP
#include <vector>
#include "o3d/vertex.hpp"
@@ -19,4 +19,4 @@ struct Triangle {
}
-#endif // O3D_TRI_H
+#endif // O3D_TRI_HPP
diff --git a/src/o3d/tri_deriv.hpp b/src/o3d/tri_deriv.hpp
index f82bd9b..65713ed 100644
--- a/src/o3d/tri_deriv.hpp
+++ b/src/o3d/tri_deriv.hpp
@@ -1,5 +1,5 @@
-#ifndef O3D_TRI_VERTEX_H
-#define O3D_TRI_VERTEX_H
+#ifndef O3D_TRI_VERTEX_HPP
+#define O3D_TRI_VERTEX_HPP
#include <vector>
#include "o3d/vertex.hpp"
@@ -22,4 +22,4 @@ struct TriangleDerived {
}
-#endif // O3D_TRI_VERTEX_H
+#endif // O3D_TRI_VERTEX_HPP
diff --git a/src/o3d/vertex.hpp b/src/o3d/vertex.hpp
index 70fca7b..1605f0d 100644
--- a/src/o3d/vertex.hpp
+++ b/src/o3d/vertex.hpp
@@ -1,5 +1,5 @@
-#ifndef O3D_VERTEX_H
-#define O3D_VERTEX_H
+#ifndef O3D_VERTEX_HPP
+#define O3D_VERTEX_HPP
#include "math/vector.hpp"
#include "o3d/vertex_data.hpp"
@@ -16,4 +16,4 @@ struct Vertex {
}
-#endif // O3D_VERTEX_H
+#endif // O3D_VERTEX_HPP
diff --git a/src/o3d/vertex_data.hpp b/src/o3d/vertex_data.hpp
index 0ebc6c9..f70100c 100644
--- a/src/o3d/vertex_data.hpp
+++ b/src/o3d/vertex_data.hpp
@@ -1,5 +1,5 @@
-#ifndef O3D_VERTEX_DATA_H
-#define O3D_VERTEX_DATA_H
+#ifndef O3D_VERTEX_DATA_HPP
+#define O3D_VERTEX_DATA_HPP
#include "math/vector.hpp"
@@ -26,4 +26,4 @@ struct VertexData {
}
-#endif // O3D_VERTEX_DATA_H
+#endif // O3D_VERTEX_DATA_HPP