mirror of
https://github.com/minetest/minetest.git
synced 2024-11-05 07:13:46 +01:00
12 lines
129 B
GLSL
12 lines
129 B
GLSL
#version 100
|
|
|
|
precision mediump float;
|
|
|
|
/* Varyings */
|
|
varying vec4 vVertexColor;
|
|
|
|
void main()
|
|
{
|
|
gl_FragColor = vVertexColor;
|
|
}
|