Rainbow trianglegit add .

This commit is contained in:
2026-02-20 20:24:42 +00:00
parent b55769bbf2
commit 253fd3006a
10 changed files with 21 additions and 31 deletions

View File

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