1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-07-22 17:18:39 +00:00
luanti/irr/media/Shaders/Renderer2D_noTex.fsh
2024-03-26 21:39:02 +01:00

11 lines
129 B
GLSL

#version 100
precision mediump float;
/* Varyings */
varying vec4 vVertexColor;
void main()
{
gl_FragColor = vVertexColor;
}