Files
Megapixels/data/solid.vert
2021-04-26 18:09:04 +10:00

10 lines
117 B
GLSL

#ifdef GL_ES
precision mediump float;
#endif
attribute vec2 vert;
void main() {
gl_Position = vec4(vert, 0, 1);
}