You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems that most if not all image processing for layers occurs as blocking code in the event loop. This is bad since it prevents any drawing updates or user IO to occur for the duration of that blocking process. For larger images, this is very significant. At the very least image processing should occur as asynchronous code, if not in a separate web worker altogether.
The text was updated successfully, but these errors were encountered:
It seems that most if not all image processing for layers occurs as blocking code in the event loop. This is bad since it prevents any drawing updates or user IO to occur for the duration of that blocking process. For larger images, this is very significant. At the very least image processing should occur as asynchronous code, if not in a separate web worker altogether.
The text was updated successfully, but these errors were encountered: