+ | Switched to compute shader

This commit is contained in:
TheRedShip
2024-12-24 00:42:47 +01:00
parent f26094aa21
commit 7b56daf149
8 changed files with 173 additions and 122 deletions

View File

@ -16,6 +16,7 @@
# define WIDTH 1920
# define HEIGHT 1080
# include "glm/glm.hpp"
# include "glm/gtc/matrix_transform.hpp"
# include "glm/gtc/type_ptr.hpp"
@ -23,8 +24,14 @@
# include "glad/gl.h"
# include "GLFW/glfw3.h"
# include <iostream>
struct Vertex {
glm::vec2 position;
glm::vec2 texCoord;
};
# include "Camera.hpp"
# include "Window.hpp"
# include "Shader.hpp"