Initial import.
[yuu.git] / src / yuu / data / shaders / color.frag
1 /* This is free and unencumbered software released into the public
2 domain. To the extent possible under law, the author of this file
3 waives all copyright and related or neighboring rights to it.
4 */
5
6 precision mediump float;
7
8 varying vec4 fColor;
9
10 void main(void) {
11 gl_FragColor = fColor;
12 }