Files
wgpu/test-data/simple.vert
2020-08-10 10:57:31 -04:00

9 lines
136 B
GLSL

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