Files
NazaraEngine/examples/bin/shaders/basic.frag
Lynix 40ec2003b4 Added Audio module
Fixed examples resources not being commited
Temporary removed static build configurations
2012-08-21 15:04:00 +02:00

11 lines
128 B
GLSL

#version 110
varying vec2 TexCoord;
uniform sampler2D texture;
void main()
{
gl_FragColor = texture2D(texture, TexCoord);
}