Add "cap" shadow shader

This commit is contained in:
2021-08-29 18:13:55 +01:00
parent d23f36ea95
commit eba8ff121c
12 changed files with 66 additions and 8 deletions
+6
View File
@@ -0,0 +1,6 @@
#version 430 core
out vec4 fColor;
void main()
{
fColor = vec4(0,1,0,1);
}