Initial public source release

Split reusable rendering and format support into vectorail-core and vectorail-gc.
This commit is contained in:
2026-08-02 17:05:27 +02:00
commit 831d96e562
109 changed files with 20558 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
#version 450 core
in vec4 vColor;
out vec4 FragColor;
void main() {
FragColor = vColor;
}