opengl-playground/imgui-submodule/imgui/examples/shaders/textured-rectangle-fragment...

9 lines
103 B
GLSL

#version 330 core
out vec4 fragmentColor;
void main()
{
fragmentColor = vec4(1.0, 0.0, 0.0, 0.0);
}