🐛 Fix render of paths with empty selrects

This commit is contained in:
Alejandro Alonso 2025-05-23 09:45:27 +02:00 committed by Alonso Torres
parent 179a5654e7
commit 327db5a1a3
3 changed files with 163 additions and 6 deletions

View file

@ -71,11 +71,11 @@ function ptr8ToPtr32(ptr8) {
return ptr8 >>> 2;
}
function allocBytes(size) {
export function allocBytes(size) {
return Module._alloc_bytes(size);
}
function getHeapU32() {
export function getHeapU32() {
return Module.HEAPU32;
}