mobiground/fragment.glsl
CRy386i 238882257b Added libm, PortView, Triangles, Orthographics View
Added libm into build system '-lm'.
Edited shaders.
Added dynamic resize window.
Added another triangle and test depth with intersection triangles.
2025-01-16 11:32:57 +02:00

9 lines
106 B
GLSL

#version 330
smooth in vec4 _colour;
out vec4 outputColour;
void main()
{
outputColour = _colour;
}