What are the benefit of locking an already v-synced framerate

framerate

I've noticed some games run with less stuttering when I apply a 60fps lock, when already using (adaptive)v-sync on a 60Hz screen. Why is this the case if the frames are paced directly with my screen's refresh?

Best Answer

It depends on the game engine behind the game.

If you just run a v-sync, the engine probably don't know this. It will generate 60+ frames, but not all of them were directed to your display. Which means some of them just bounce.

If you define it in the game itself, the engine knows about it and can react. If the engine produces a world or a scene and probably can create 70 frames per second, it just stops at 60 frames. Now the engine can do something else for the 10 frames. It can probably load some textures which will be needed soon (in the next seconds). It can probably generate the models left and right from your viewport, which means they are just instantly ready if you spontaneously take a look to the left or right. Or it just can calm down and give your graphic card 10 frames time to rest and to cool (or not to heat up). Which will produce better performance in the following seconds.

Hopefully this will answer your question otherwise, just ask in the comment.

Related Topic