实线画出来了。

This commit is contained in:
xsl
2025-09-22 19:14:14 +08:00
parent cb59a5c1c8
commit 610537fe9d
7 changed files with 42 additions and 5 deletions
@@ -0,0 +1,11 @@
#version 450
layout(location = 0) in vec3 fragColor;
layout(location = 0) out vec4 outColor;
void main() {
outColor = vec4(1, 0, 0, 1.0);
}