SWBF2-Classic-Msh-Viewer/MeshViewerQt/Resources/TextureShader.frag

12 lines
132 B
GLSL
Raw Normal View History

2016-12-14 16:20:20 +00:00
#version 330
// Input
in vec2 UV;
// Output
out vec4 color;
void main()
{
2016-12-14 16:20:20 +00:00
color = {255,0,0};//texture(textureSampler, UV).rgb;
}