Files
Megapixels/data/solid.vert
2021-11-12 21:47:34 +11:00

12 lines
117 B
GLSL

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