summaryrefslogtreecommitdiffstats
path: root/src/renderer/runtime/view/renderer/shaders/default.fs
blob: 2c8ad1560788095ae674a89cef075327bd7e649b (plain)
1
2
3
4
5
6
7
8
9
10
precision highp float;

varying vec2 vTextureCoord;

uniform sampler2D uSampler;


void main(void) {
	gl_FragColor = texture2D(uSampler, vTextureCoord);
}