co-maps/libs/shaders/GL/debug_rect.fsh.glsl

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
141 B
Text
Raw Normal View History

2025-11-22 13:58:55 +01:00
layout (location = 0) out vec4 v_FragColor;
layout (binding = 0) uniform UBO
{
vec4 u_color;
};
void main()
{
v_FragColor = u_color;
}