mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-12-12 16:45:09 +00:00
7 lines
122 B
GLSL
7 lines
122 B
GLSL
#version 450
|
|
layout(location = 0) in vec2 a_pos;
|
|
|
|
void main() {
|
|
gl_Position = vec4(clamp(a_pos, 0.0, 1.0), 0.0, 1.0);
|
|
}
|