shade 0.0.5

Another graphics library
Documentation
1
2
3
4
5
6
7
8
9
10
#version 300 es
precision highp float;

out vec4 o_fragColor;

in vec4 v_color;

void main() {
	o_fragColor = clamp(v_color, 0.0, 1.0);
}