mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-27 09:14:01 +00:00
11 lines
179 B
GLSL
11 lines
179 B
GLSL
#version 310 es
|
|
|
|
precision highp float;
|
|
|
|
|
|
void main() {
|
|
gl_Position = ((((vec2(1.0) + vec2(2.0)) - vec2(3.0)) / vec2(4.0)).xyxy + vec4((ivec4(5) % ivec4(2))));
|
|
return;
|
|
}
|
|
|