Files
wgpu/test-data/simple.vert
Pelle Johnsen 482c6d042d [glsl.new] Add initial declaration support
Focus on handling global in/out vars
2020-08-09 10:57:41 -04:00

8 lines
119 B
GLSL

#version 450 core
layout(location = 0) in vec2 position;
void main() {
gl_Position = vec4(position, 0.0, 1.0);
}