initial commit

This commit is contained in:
Confideo-IOM
2026-07-17 15:30:29 +01:00
commit 7e8ec5a825
416 changed files with 40308 additions and 0 deletions
@@ -0,0 +1,13 @@
#ifndef PERFRAMEUBO
#define PERFRAMEUBO
#include <GLMIncludes.h>
struct PerFrameUBO
{
glm::mat4 view;
glm::mat4 proj;
glm::vec3 viewer_pos = {0,0,0};
uint32_t light_count = 0;
};
#endif /* PERFRAMEUBO */