Files
maszyna/shaders/color.frag
milek7 13ba3fcd13 work
2018-07-08 21:33:26 +02:00

11 lines
104 B
GLSL

#version 330
in vec3 f_color;
#include <common>
void main()
{
gl_FragColor = vec4(f_color, 1.0f);
}