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, when people read "immediate mode rendering", there's a chance that people think ratatui draws every pixel to the terminal. However that is not case, only diffs are rendered to IO (e.g. stdout). Currently, I believe diff is only mentioned in under-the-hood section.
It should probably more prominently mentioned in the README, docs and website.
The text was updated successfully, but these errors were encountered:
To some extent this is true - the rendering happens from widget to memory to the buffer, but that's not the expensive bit (the actually copying to screen is).
kdheepak
changed the title
Clarify that only diffs are rendered every frame
Clarify that only diffs are rendered to IO every frame
Feb 14, 2024
Currently, when people read "immediate mode rendering", there's a chance that people think ratatui draws every pixel to the terminal. However that is not case, only diffs are rendered to IO (e.g. stdout). Currently, I believe
diff
is only mentioned inunder-the-hood
section.It should probably more prominently mentioned in the README, docs and website.
The text was updated successfully, but these errors were encountered: