Initial commit

This commit is contained in:
2024-10-11 22:21:32 +02:00
commit 1bdd01e9b2
38 changed files with 11363 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
Directional_Light :: struct {
color_and_intensity : Vector4;
direction : Vector4;
view_position : Vector3;
}
Directional_Light_Buffer_Data :: struct {
color_and_intensity : Vector4;
direction : Vector4;
//light_matrix: Matrix4;
}