summaryrefslogtreecommitdiff
path: root/tests/shaders/glsl-fs-texturecube.frag
blob: c9a514a8c0deac0b8dacbdfce09600583681a2ee (plain)
1
2
3
4
5
6
uniform samplerCube tex;

void main()
{
	gl_FragColor = textureCube(tex, gl_TexCoord[0].xyz);
}