Started on the render-pipeline/pass architecture.

This commit is contained in:
2025-11-14 14:40:05 +01:00
parent ebbb377ce8
commit c7de871865
4 changed files with 75 additions and 5 deletions

9
pass.odin Normal file
View File

@@ -0,0 +1,9 @@
package renderer
RGB_Color :: [3]u8
RGBA_Color :: [4]u8
Pass :: struct {
name: string,
clear_color: RGB_Color,
}