From 45d014361932346c41250bfb21c4a4588f2ea8c7 Mon Sep 17 00:00:00 2001 From: ivkraft <68406641+ivkraft@users.noreply.github.com> Date: Sun, 2 Mar 2025 15:42:04 -0500 Subject: [PATCH 1/2] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f73b68d..cecfdf6 100644 --- a/README.md +++ b/README.md @@ -10,9 +10,10 @@ cmake .. ``` Tested on Windows 11 using Visual Studio 2022, more testing to follow. +Tested on Linux. ## Third-Party Dependencies Uses the following third-party dependencies: - [GLFW 3.4](https://github.com/glfw/glfw) - [Glad](https://github.com/Dav1dde/glad) -- [glm](https://github.com/g-truc/glm) \ No newline at end of file +- [glm](https://github.com/g-truc/glm) From 231ed9551399bc51e0fc4deb12f1ea8b39cf70bd Mon Sep 17 00:00:00 2001 From: wizz Date: Wed, 5 Mar 2025 13:38:58 -0500 Subject: [PATCH 2/2] added vector to shader.h --- .gitignore | 3 +++ App/Source/Shader.cpp | 1 + 2 files changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 1af9604..3816f9a 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,6 @@ CMakeUserPresets.json # Visual Studio .vs/ *.user + +#build +build/ diff --git a/App/Source/Shader.cpp b/App/Source/Shader.cpp index fb04437..fd30c2a 100644 --- a/App/Source/Shader.cpp +++ b/App/Source/Shader.cpp @@ -2,6 +2,7 @@ #include #include +#include #include