Add line shadow shader

This commit is contained in:
jgk
2021-06-26 22:20:41 +02:00
parent 726cd425f2
commit 06f22a3ea5
21 changed files with 128 additions and 74 deletions
+6
View File
@@ -0,0 +1,6 @@
#version 430 core
layout (location = 0) in vec3 pos;
void main()
{
gl_Position = vec4(pos,1);
}