mirror of https://github.com/auygun/kaliber.git
10 lines
107 B
Plaintext
10 lines
107 B
Plaintext
|
#ifdef GL_ES
|
||
|
precision mediump float;
|
||
|
#endif
|
||
|
|
||
|
uniform vec4 color;
|
||
|
|
||
|
void main() {
|
||
|
gl_FragColor = color;
|
||
|
}
|