yupplemayham/Resources/shaders/triangle.frag
2024-06-21 16:59:06 -04:00

7 lines
No EOL
83 B
GLSL

#version 330 core
in vec3 pos;
void main()
{
gl_FragColor = vec4(pos.xyz, 1.0);
}