1#version 450
2
3in Vertex {
4    vec4 v;
5} vVert;
6
7void main()
8{
9    vec4 color = vec4(vVert.v2.rgb, 1.0);
10}
11
12