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.frag Normal file
View File

@@ -0,0 +1,7 @@
#version 450
layout(location = 0) out vec4 f_color;
void main() {
f_color = vec4(1.0, 0.0, 0.0, 1.0);
}