summaryrefslogtreecommitdiff
path: root/productviewer/product.frag
blob: 6bbb24dd38012130c82814d1b7c2931de67a11fa (plain)
1
2
3
4
5
6
7
precision mediump float;
varying vec2 v_texcoord;
uniform sampler2D s_texture;
void main()
{
	gl_FragColor = texture2D(s_texture, v_texcoord);
}