aboutsummaryrefslogtreecommitdiff
path: root/tests/glmark2/data/shaders/desktop.frag
blob: f7ed2fdc56cb46f5d4d210ca2db5437c4e91183e (plain)
1
2
3
4
5
6
7
8
9
10
uniform sampler2D MaterialTexture0;

varying vec2 TextureCoord;

void main(void)
{
    vec4 texel = texture2D(MaterialTexture0, TextureCoord);
    gl_FragColor = texel;
}