This commit is contained in:
2019-07-22 18:12:06 +02:00
parent db009a9ce5
commit 7d50d00ab6
7 changed files with 218 additions and 98 deletions

7
shaders/line.vert Normal file
View File

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