summaryrefslogtreecommitdiffstats
path: root/src/render/shaders/es2/unlittexture.frag
blob: 66752ed3200e69ea888943a0f17673b6c4ec7315 (plain)
1
2
3
4
5
6
7
8
9
10
11
#define FP highp

uniform sampler2D diffuseTexture;

varying FP vec3 position;
varying FP vec2 texCoord;

void main()
{
    gl_FragColor = texture2D( diffuseTexture, texCoord );
}