planetwars.dev/web/pw-visualizer/assets/shaders/frag/image.glsl

14 lines
223 B
Plaintext
Raw Normal View History

2021-12-22 12:59:13 +00:00
#ifdef GL_ES
precision mediump float;
#endif
// Passed in from the vertex shader.
varying vec2 v_texCoord;
// The texture.
uniform sampler2D u_texture;
void main() {
gl_FragColor = texture2D(u_texture, v_texCoord);
}