mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-26 00:33:51 +00:00
13 lines
172 B
GLSL
13 lines
172 B
GLSL
#version 300 es
|
|
#extension GL_OVR_multiview2 : require
|
|
|
|
precision highp float;
|
|
precision highp int;
|
|
|
|
|
|
void main() {
|
|
int view_index = int(gl_ViewID_OVR);
|
|
return;
|
|
}
|
|
|