This commit is contained in:
zack 2025-05-23 21:13:53 -04:00
commit 444f800536
No known key found for this signature in database
GPG key ID: EE8A2B709E2401D1
122 changed files with 17137 additions and 0 deletions

13
data/shaders/Grid.frag Normal file
View file

@ -0,0 +1,13 @@
//
#version 460 core
#include <data/shaders/GridParameters.h>
#include <data/shaders/GridCalculation.h>
layout (location=0) in vec2 uv;
layout (location=1) in vec2 camPos;
layout (location=0) out vec4 out_FragColor;
void main() {
out_FragColor = gridColor(uv, camPos);
}