wgpu/naga/tests/out/glsl/wgsl-multiview_webgl.main.Fragment.glsl
Inner Daemons ad0f3111b7
Add multiview limits and tests (#8206)
Co-authored-by: Andreas Reich <r_andreas2@web.de>
Co-authored-by: Magnus <85136135+SupaMaggie70Incorporated@users.noreply.github.com>
2025-11-01 12:08:15 +00:00

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;
}