openxr 0.21.1

High-level, mostly-safe OpenXR bindings
Documentation
1
2
3
4
5
6
7
8
9
#version 450
#extension GL_EXT_multiview : require

layout(location = 0) in vec2 screen_coords;
layout(location = 0) out vec4 color;

void main() {
    color = vec4(screen_coords, gl_ViewIndex, 1);
}