1#version 450
2
3layout(location = 0, index = 0) out vec4 FragColor0;
4layout(location = 0, index = 1) out vec4 FragColor1;
5
6void main()
7{
8	FragColor0 = vec4(1.0);
9	FragColor1 = vec4(2.0);
10}
11