megapixels/data/blit.vert

15 lines
179 B
GLSL
Raw Normal View History

#ifdef GL_ES
2021-04-15 15:14:20 +02:00
precision mediump float;
#endif
2021-04-15 15:14:20 +02:00
attribute vec2 vert;
attribute vec2 tex_coord;
varying vec2 uv;
void main() {
uv = tex_coord;
gl_Position = vec4(vert, 0, 1);
}