forked from Mirrorlandia_minetest/irrlicht
10 lines
115 B
Plaintext
10 lines
115 B
Plaintext
|
precision mediump float;
|
||
|
|
||
|
/* Varyings */
|
||
|
varying vec4 vVertexColor;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
gl_FragColor = vVertexColor;
|
||
|
}
|