1 #pragma MSP stage(vertex)
2 layout(location=0) in vec4 position;
3 layout(location=0) in vec2 texcoords[3];
4 layout(location=2) in mat4 instance_transform;
5 layout(location=4) in vec4 color;
8 gl_Position = position;
12 <test>:3: Overlapping location 0 for 'in texcoords'
13 <test>:2: Previously used here for 'in position'
14 <test>:4: Overlapping location 2 for 'in instance_transform'
15 <test>:3: Previously used here for 'in texcoords'
16 <test>:5: Overlapping location 4 for 'in color'
17 <test>:4: Previously used here for 'in instance_transform'