Started moving to a samples structure

This commit is contained in:
2026-05-07 03:03:35 +03:00
parent 3d37d30478
commit e4f033ea1a
8 changed files with 52 additions and 18 deletions
@@ -0,0 +1,9 @@
#version 450
#pragma shader_stage(fragment)
layout(location = 0) out vec4 outColor;
void main() {
outColor = vec4(0.f, 1.f, 0.f, 1.f);
}