forked from Mirrorlandia_minetest/irrlicht
28d0e0644c
Currently, they are identical to OGLES2 shaders, except of version specification.
12 lines
129 B
GLSL
12 lines
129 B
GLSL
#version 100
|
|
|
|
precision mediump float;
|
|
|
|
/* Varyings */
|
|
varying vec4 vVertexColor;
|
|
|
|
void main()
|
|
{
|
|
gl_FragColor = vVertexColor;
|
|
}
|