mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-08 19:40:06 +00:00
10 lines
143 B
GLSL
10 lines
143 B
GLSL
#version 330
|
|
|
|
#extension GL_OVR_multiview : enable
|
|
|
|
layout(num_views = 2) in;
|
|
|
|
void main() {
|
|
gl_Position = vec4(gl_ViewID_OVR, 0, 0, 0);
|
|
}
|