Add wallFace shaders files

This commit is contained in:
2021-03-21 18:55:33 +01:00
parent 1527ee3069
commit a7591bb1d7
5 changed files with 73 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#version 430 core
layout (location = 0) in vec4 poss;
layout (location = 1) in vec4 color;
out vec4 vColor;
void main()
{
gl_Position = poss;
vColor = color;
}