lot of opengl draw work to get image on screen

This commit is contained in:
Dynamitos
2025-01-24 00:19:11 +01:00
parent 91bdbe4a09
commit 5f6aef0284
11 changed files with 192 additions and 44 deletions
+8
View File
@@ -0,0 +1,8 @@
#pragma once
#include <glm/glm.hpp>
struct Ray
{
glm::vec3 origin;
glm::vec3 direction;
};