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,11 @@
#version 320 es
precision mediump float;
layout(location = 0) in vec2 aPos;
uniform mat4 uProjection;
void main()
{
gl_Position = uProjection * vec4(aPos, 0.0, 1.0);
}