Files
Megapixels/data/solid.vert
Benjamin Schaaf 772db36877 Make clang-format more aggressive
clang-format always manages to mix spaces into tab-based indentation.
Since we already require an exact tab-width of 8 it makes more sense to
use spaces.
2021-11-13 00:06:11 +11:00

12 lines
124 B
GLSL

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