mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-12 21:20:06 +00:00
8 lines
116 B
GLSL
8 lines
116 B
GLSL
|
#version 330
|
||
|
|
||
|
#extension GL_OVR_multiview : enable
|
||
|
|
||
|
void main() {
|
||
|
gl_Position = vec4(gl_ViewID_OVR, 0, 0, 0);
|
||
|
}
|