this post was submitted on 28 Sep 2025
45 points (100.0% liked)
Linux Gaming
21424 readers
192 users here now
Discussions and news about gaming on the GNU/Linux family of operating systems (including the Steam Deck). Potentially a $HOME
away from home for disgruntled /r/linux_gaming denizens of the redditarian demesne.
This page can be subscribed to via RSS.
Original /r/linux_gaming pengwing by uoou.
No memes/shitposts/low-effort posts, please.
Resources
WWW:
Discord:
IRC:
Matrix:
Telegram:
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I was trying to explain why the game loop would be held back by the rendering speed, even though they run on different hardware.
If you are bottlenecked by the GPU that means the game loop spends some of its time waiting for the GPU. If you then turn on frame generation, you devote parts of the GPU to doing that, which makes regular rendering slower, making the game loop spend even more time waiting. This will increase input latency.
Frame generation also needs to delay output of any real frame while it creates and inserts a generated frame. This will add some output latency as well.
In the opposite scenario, where you are bottlenecked by the CPU, enabling frame generation should in theory not impact the game loop at all. In that case it's the GPU that's waiting for the CPU, and it can use some of those extra resources it has to do frame generation with no impact on input latency.