Add file
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
#version 450 core
|
||||
layout (location=0) out vec4 fColor;
|
||||
uniform sampler2DArray thetexture;
|
||||
in vec4 vColor;
|
||||
in vec3 vTexCoord;
|
||||
void main()
|
||||
{
|
||||
fColor = texture(thetexture, vec3 (vTexCoord.xyz)) * vColor;
|
||||
}
|
||||
Reference in New Issue
Block a user