Merge pull request #2976 from jeremy-lunarg/hayes-fix-2975
[platform/upstream/glslang.git] / Test / spv.OVR_multiview.vert
1 #version 330
2
3 #extension GL_OVR_multiview : enable
4
5 layout(num_views = 2) in;
6
7 void main() {
8     gl_Position = vec4(gl_ViewID_OVR, 0, 0, 0);
9 }