mirror of
https://github.com/luanti-org/luanti.git
synced 2025-07-22 17:18:39 +00:00
12 lines
129 B
Text
12 lines
129 B
Text
|
#version 100
|
||
|
|
||
|
precision mediump float;
|
||
|
|
||
|
/* Varyings */
|
||
|
varying vec4 vVertexColor;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
gl_FragColor = vVertexColor;
|
||
|
}
|