-
Notifications
You must be signed in to change notification settings - Fork 750
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
perf: Double rendering #10980
Labels
Comments
You can see the count of tile rendering in the grid overlay over the tiles with details there. |
eszkadev
added a commit
that referenced
this issue
Feb 11, 2025
related to #10980 open calc and use page down to enter some initially not visible area notice in debug tools that tiles are rendered twice If any tile rendering is already pending - let's don't request it again. Use shared function for that check which was used only in one place but forgotten in hadnling the incoming tilecombine message. Signed-off-by: Szymon Kłos <[email protected]> Change-Id: Icc1bf97826ec8b1cb1185b6f30dc2daf6d0355ea
I have initial PR for that: #11134 |
Looks good - approved; but would be good to have Caolan's comment closed in there =) thanks ! |
eszkadev
added a commit
that referenced
this issue
Feb 12, 2025
related to #10980 open calc and use page down to enter some initially not visible area notice in debug tools that tiles are rendered twice If any tile rendering is already pending - let's don't request it again. Use shared function for that check which was used only in one place but forgotten in hadnling the incoming tilecombine message. Signed-off-by: Szymon Kłos <[email protected]> Change-Id: Icc1bf97826ec8b1cb1185b6f30dc2daf6d0355ea
eszkadev
added a commit
that referenced
this issue
Feb 12, 2025
related to #10980 open calc and use page down to enter some initially not visible area notice in debug tools that tiles are rendered twice If any tile rendering is already pending - let's don't request it again. Use shared function for that check which was used only in one place but forgotten in hadnling the incoming tilecombine message. Signed-off-by: Szymon Kłos <[email protected]> Change-Id: Icc1bf97826ec8b1cb1185b6f30dc2daf6d0355ea
eszkadev
added a commit
that referenced
this issue
Feb 12, 2025
related to #10980 open calc and use page down to enter some initially not visible area notice in debug tools that tiles are rendered twice If any tile rendering is already pending - let's don't request it again. Use shared function for that check which was used only in one place but forgotten in hadnling the incoming tilecombine message. Signed-off-by: Szymon Kłos <[email protected]> Change-Id: Icc1bf97826ec8b1cb1185b6f30dc2daf6d0355ea
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Open a spreadsheet, hit page-down a few times - notice some tiles have been rendered twice.
We should save that double rendering. I believe this is because we send a tilecombine that is interpreted as being a request to force rendering of a tile - and the JS client shoudl not have that 'power' - it should be sent a cached version.
Meanwhile DocumentBroker needs a way to force a new key-frame, and I tihnk the JS does this by accident, and sometimes these race unhelpfully.
So the 'oldwid=' thing needs adapting / filtering from the JS side to avoid this in the Kit/ code =)
Thanks !
The text was updated successfully, but these errors were encountered: