Files
rust-engine/shaders/line.vert
2019-07-22 18:12:06 +02:00

7 lines
108 B
GLSL

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