SWBF2-Classic-Msh-Viewer/3DViewer/Shader/FragmentTextureShader.mv2shdr

14 lines
164 B
Plaintext
Raw Normal View History

2016-09-07 15:17:17 +00:00
#version 450 core
// Input
in vec2 UV;
// Ouput data
out vec3 color;
uniform sampler2D textureSampler;
void main()
{
color = texture(textureSampler, UV).rgb;
}