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
172 B
GLSL
13 lines
172 B
GLSL
#version 310 es
|
|
#extension GL_EXT_multiview : require
|
|
|
|
precision highp float;
|
|
precision highp int;
|
|
|
|
|
|
void main() {
|
|
uint view_index = uint(gl_ViewIndex);
|
|
return;
|
|
}
|
|
|