mirror of
https://github.com/gfx-rs/wgpu.git
synced 2025-12-08 21:26:17 +00:00
Co-authored-by: Andreas Reich <r_andreas2@web.de> Co-authored-by: Magnus <85136135+SupaMaggie70Incorporated@users.noreply.github.com>
13 lines
168 B
GLSL
13 lines
168 B
GLSL
#version 300 es
|
|
#extension GL_OVR_multiview2 : require
|
|
|
|
precision highp float;
|
|
precision highp int;
|
|
|
|
|
|
void main() {
|
|
uint view_index = gl_ViewID_OVR;
|
|
return;
|
|
}
|
|
|