init
This commit is contained in:
commit
444f800536
122 changed files with 17137 additions and 0 deletions
13
data/shaders/Grid.frag
Normal file
13
data/shaders/Grid.frag
Normal 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);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue