willow-example 0.1.1

Example webapp for willow
Documentation
1
2
3
4
5
6
7
8
9
10
11
attribute vec3 a_offset;
attribute lowp vec3 a_color;

uniform mat4 u_transform;

varying lowp vec3 v_color;

void main() {
	gl_Position = u_transform * vec4(a_offset, 1.0);
	v_color = a_color;
}