mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-20 13:23:59 +00:00
12 lines
141 B
GLSL
12 lines
141 B
GLSL
layout (location = 0) out vec4 v_FragColor;
|
|
|
|
layout (binding = 0) uniform UBO
|
|
{
|
|
vec4 u_color;
|
|
};
|
|
|
|
void main()
|
|
{
|
|
v_FragColor = u_color;
|
|
}
|