megapixels/data/solid.vert

10 lines
117 B
GLSL
Raw Normal View History

2021-04-26 10:09:04 +02:00
#ifdef GL_ES
precision mediump float;
#endif
attribute vec2 vert;
void main() {
gl_Position = vec4(vert, 0, 1);
}