diff --git a/.gitmodules b/.gitmodules index 60367a7..9e3085d 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,6 @@ +[submodule "TheChef"] + path = TheChef + url = https://git.brammie15.dev/brammie15/TheChef.git [submodule "destrum/third_party/glm"] path = destrum/third_party/glm url = https://github.com/g-truc/glm.git diff --git a/destrum/include/destrum/Graphics/ComputePipeline.h b/destrum/include/destrum/Graphics/ComputePipeline.h new file mode 100644 index 0000000..1db350d --- /dev/null +++ b/destrum/include/destrum/Graphics/ComputePipeline.h @@ -0,0 +1,4 @@ +#ifndef COMPUTEPIPELINE_H +#define COMPUTEPIPELINE_H + +#endif //COMPUTEPIPELINE_H diff --git a/destrum/include/destrum/Graphics/Frustum.h b/destrum/include/destrum/Graphics/Frustum.h new file mode 100644 index 0000000..850e557 --- /dev/null +++ b/destrum/include/destrum/Graphics/Frustum.h @@ -0,0 +1,4 @@ +#ifndef FRUSTUM_H +#define FRUSTUM_H + +#endif //FRUSTUM_H diff --git a/destrum/include/destrum/Graphics/Pipelines/SkinningPipeline.h b/destrum/include/destrum/Graphics/Pipelines/SkinningPipeline.h new file mode 100644 index 0000000..8763f9e --- /dev/null +++ b/destrum/include/destrum/Graphics/Pipelines/SkinningPipeline.h @@ -0,0 +1,4 @@ +#ifndef SKINNINGPIPELINE_H +#define SKINNINGPIPELINE_H + +#endif //SKINNINGPIPELINE_H diff --git a/destrum/include/destrum/Graphics/Resources/AppendableBuffer.h b/destrum/include/destrum/Graphics/Resources/AppendableBuffer.h new file mode 100644 index 0000000..ab5c323 --- /dev/null +++ b/destrum/include/destrum/Graphics/Resources/AppendableBuffer.h @@ -0,0 +1,4 @@ +#ifndef APPENDABLEBUFFER_H +#define APPENDABLEBUFFER_H + +#endif //APPENDABLEBUFFER_H diff --git a/destrum/include/destrum/Util/MathUtils.h b/destrum/include/destrum/Util/MathUtils.h new file mode 100644 index 0000000..fde5f82 --- /dev/null +++ b/destrum/include/destrum/Util/MathUtils.h @@ -0,0 +1,4 @@ +#ifndef MATHUTILS_H +#define MATHUTILS_H + +#endif //MATHUTILS_H diff --git a/destrum/src/Graphics/ComputePipeline.cpp b/destrum/src/Graphics/ComputePipeline.cpp new file mode 100644 index 0000000..e69de29 diff --git a/destrum/src/Graphics/Frustum.cpp b/destrum/src/Graphics/Frustum.cpp new file mode 100644 index 0000000..e69de29 diff --git a/destrum/src/Graphics/Pipelines/SkinningPipeline.cpp b/destrum/src/Graphics/Pipelines/SkinningPipeline.cpp new file mode 100644 index 0000000..e69de29