Loading the wall causes the canvas renderer to stutter #83
Labels
No labels
bug
c:haku
c:rkgk backend
c:rkgk frontend
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: liquidex/rkgk#83
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This is probably because we're doing a stupid roundtrip after decoding the received image. Instead of decoding the WebP and writing it as canvas data directly, we instead:
OffscreenCanvas
, which we need to extract pixels from theImageBitmap
.Pixmap
.Pixmap
.I'm not sure which is the slowest here, but it uses a lot more memory than needed, and duplicates a lot of work. I wonder what we can do to make this faster.