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
+12
View File
@@ -0,0 +1,12 @@
#version 430 core
in vec2 tPos;
in vec4 gColor;
uniform sampler2D tex;
out vec4 fColor;
void main()
{
fColor = gColor * texture(tex,tPos);
}