1#version 410
2
3out gl_PerVertex
4{
5    vec4 gl_Position;
6};
7
8void main()
9{
10    gl_Position = vec4(1.0);
11}