mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 18:18:18 +00:00
10 lines
95 B
GLSL
10 lines
95 B
GLSL
#version 330
|
|
|
|
uniform vec4 vertColor;
|
|
|
|
out vec4 FragClr;
|
|
void main()
|
|
{
|
|
FragClr = vertColor;
|
|
}
|