Graphics pipeline

Signed-off-by: Slendi <slendi@socopon.com>
This commit is contained in:
2025-12-04 13:31:00 +02:00
parent 933b7c65fd
commit d1f79ac252
10 changed files with 439 additions and 21 deletions

10
shaders/triangle.frag Normal file
View File

@@ -0,0 +1,10 @@
#version 450
layout (location = 0) in vec3 in_color;
layout (location = 0) out vec4 out_frag_color;
void main() {
out_frag_color = vec4(in_color, 1.0f);
}