
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.
12 lines
113 B
GLSL
12 lines
113 B
GLSL
#ifdef GL_ES
|
|
precision mediump float;
|
|
#endif
|
|
|
|
uniform vec4 color;
|
|
|
|
void
|
|
main()
|
|
{
|
|
gl_FragColor = color;
|
|
}
|