forked from Mirrorlandia_minetest/irrlicht
12 lines
129 B
Plaintext
12 lines
129 B
Plaintext
|
#version 100
|
||
|
|
||
|
precision mediump float;
|
||
|
|
||
|
/* Varyings */
|
||
|
varying vec4 vVertexColor;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
gl_FragColor = vVertexColor;
|
||
|
}
|