summaryrefslogtreecommitdiff
path: root/default.f.glsl
blob: 55b6c5225788780dd52887ae868640653601efed (plain)
1
2
3
4
5
6
7
8
9
10
#version 110

uniform sampler2D textures[2];

varying vec2 texcoord;

void main()
{
	gl_FragColor = texture2D(textures[0], texcoord);
}