feat: stroke tessellation and gpu rendering

This commit is contained in:
2026-03-07 01:07:17 +05:30
parent b1ae584469
commit a1abe76dbd
7 changed files with 218 additions and 49 deletions

View File

@@ -0,0 +1,10 @@
#version 320 es
precision mediump float;
uniform vec4 uColor; // RGBA
out vec4 FragColor;
void main() {
FragColor = uColor;
}