punyverse/punyverse/shaders/line.fragment.glsl
Quantum 674289a8b3 Turn the circle thing to use shaders.
It's for tiny things like that that immediate mode is useful.
2018-08-29 02:29:42 -04:00

9 lines
102 B
GLSL

#version 130
out vec4 o_fragColor;
uniform vec4 u_color;
void main() {
o_fragColor = u_color;
}