-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
decode images in worker #20
Comments
Same as #16, needs help. |
Bonus of using the worker is that we can move the complicated logic that preserves the paint order to the decode worker. The overhead of using a worker for small |
Some reports of latency issues with the worker: Xpra-org/xpra#3229 (comment) |
since that also uses createImageBitmap, which is asynchronous
99f9ff2 detects broken implementations of
|
Looks like image decoding is single threaded in chrome!? |
See createImageBitmap(): It allows you to decode an image in the background, and get access to a new ImageBitmap primitive, which you can draw into a canvas in the same way you would an element, another canvas, or a video.
The text was updated successfully, but these errors were encountered: