File tree Expand file tree Collapse file tree 6 files changed +19
-45
lines changed Expand file tree Collapse file tree 6 files changed +19
-45
lines changed Original file line number Diff line number Diff line change @@ -14,4 +14,4 @@ tools/opensbi/build
1414.idea
15153rd
1616Doxyfile
17- include /config.h
17+ src / include /config.h
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1- #pragma once
1+ #ifndef SIMPLERENDER_SRC_INCLUDE_FACE_HPP_
2+ #define SIMPLERENDER_SRC_INCLUDE_FACE_HPP_
23
34#include < array>
45
@@ -76,3 +77,5 @@ class Face {
7677};
7778
7879} // namespace simple_renderer
80+
81+ #endif
Original file line number Diff line number Diff line change 1- #pragma once
1+ #ifndef SIMPLERENDER_SRC_INCLUDE_MATERIAL_HPP_
2+ #define SIMPLERENDER_SRC_INCLUDE_MATERIAL_HPP_
23
34#include < math.hpp>
45
@@ -36,4 +37,6 @@ class Material {
3637 Vector3f specular;
3738};
3839
39- } // namespace simple_renderer
40+ } // namespace simple_renderer
41+
42+ #endif
Original file line number Diff line number Diff line change 1- #pragma once
1+ #ifndef SIMPLERENDER_SRC_INCLUDE_MATH_HPP_
2+ #define SIMPLERENDER_SRC_INCLUDE_MATH_HPP_
23
34#include < glm/glm.hpp>
45
@@ -56,3 +57,5 @@ struct fmt::formatter<simple_renderer::Matrix4f> : fmt::formatter<std::string> {
5657 return fmt::format_to (ctx.out (), " \n {}" , matrix_str);
5758 }
5859};
60+
61+ #endif
Original file line number Diff line number Diff line change 1- #pragma once
1+ #ifndef SIMPLERENDER_SRC_INCLUDE_VERTEX_HPP_
2+ #define SIMPLERENDER_SRC_INCLUDE_VERTEX_HPP_
23
34#include < math.hpp>
45
@@ -63,4 +64,6 @@ class Vertex {
6364 Color color_;
6465};
6566
66- } // namespace simple_renderer
67+ } // namespace simple_renderer
68+
69+ #endif
You can’t perform that action at this time.
0 commit comments