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
Currently redrawing on-demand -- when a module has new things to be drawn, it happens as soon as it's received. This is great for very infrequent updates, there is no need to keep redrawing the screen when nothing changes. But this is not-so-great for quickly updating things.
Should there be a draw loop? Should any module updates be queued for the next draw loop to sweep through?
The text was updated successfully, but these errors were encountered:
Currently redrawing on-demand -- when a module has new things to be drawn, it happens as soon as it's received. This is great for very infrequent updates, there is no need to keep redrawing the screen when nothing changes. But this is not-so-great for quickly updating things.
Should there be a draw loop? Should any module updates be queued for the next draw loop to sweep through?
The text was updated successfully, but these errors were encountered: