mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-12-03 20:23:40 +00:00
13 lines
165 B
GLSL
13 lines
165 B
GLSL
#version 310 es
|
|
#extension GL_EXT_multiview : require
|
|
|
|
precision highp float;
|
|
precision highp int;
|
|
|
|
|
|
void main() {
|
|
int view_index = gl_ViewIndex;
|
|
return;
|
|
}
|
|
|