wayvnc/shaders/texture-fragment.glsl

11 lines
138 B
Plaintext
Raw Normal View History

2019-10-27 22:22:43 +00:00
precision mediump float;
uniform sampler2D u_tex;
varying vec2 v_texture;
void main()
{
gl_FragColor = texture2D(u_tex, v_texture);
}