Does it make sense having FPS higher than the monitor refresh rate?

7

1

I've heard that the human eye processes twenty-four images per second. Also, monitors usually work with 60Hz.

My question is, for a highly interactive application (e.g., a fast-paced FPS game) does it make sense to render faster than the monitor refresh rate?

André Puel

Posted 2011-09-22T19:53:07.543

Reputation: 275

Wikipedia on refresh rate: "On larger CRT monitors (17" or larger), most people experience mild discomfort unless the refresh is set to 72 Hz or higher. A rate of 100 Hz is comfortable at almost any size. However, this does not apply to LCD monitors." – None – 2011-09-22T19:58:43.250

Many games limit the rendering at 60fps. Since most LCD monitors max out at 60hz, it does not make much sense to go higher. – Fosco – 2011-09-22T20:00:47.353

@rfausak I've edited my question according to your comment. – None – 2011-09-22T20:02:34.967

2

People can't process many images per second, but you can still perceive the difference between two frames at 60Hz when motion blurring is not present. See Wikipedia/frame_rate.

– None – 2011-09-22T20:09:33.150

Answers

2

Wikipedia: "A certain amount of discarded “headroom” frames are beneficial for the elimination of uneven (“choppy” or “jumpy”) output, and to prevent FPS from plummeting during the intense sequences when players need smooth feedback most.

Aside from frame rate, a separate but related factor unique to interactive applications such as gaming is latency. Excessive preprocessing can result in a noticeable delay between player commands and computer feedback, even when a full frame rate is maintained, often referred to as input lag.

Without realistic motion blurring, video games and computer animations do not look as fluid as film, even with a higher frame rate. When a fast moving object is present on two consecutive frames, a gap between the images on the two frames contributes to a noticeable separation of the object and its afterimage in the eye. Motion blurring mitigates this effect, since it tends to reduce the image gap when the two frames are strung together The effect of motion blurring is essentially superimposing multiple images of the fast-moving object on a single frame. Motion blurring makes the motion more fluid to the human eye, even as the image of the object becomes blurry on each individual frame.

A high frame rate still does not guarantee fluid movements, especially on hardware with more than one GPU. This effect is known as micro stuttering."

Hope that helps a little.

xentoo

Posted 2011-09-22T19:53:07.543

Reputation: 39

1also, the minimum frame rate can be significantly lower than the average frame rate leading to a perceived lower overall frame rate. – Lamar B – 2011-09-23T17:15:48.997

1

If the FPS rate of the game is higher than the monitor's refresh rate, some of the rendered frames are never shown and the time and processing power used rendering them is wasted.

Most rendering engines never go higher than the refresh rate because they synchronize with it to avoid graphical tearing when the rendered frame is changed in the middle of a screen refresh. This was called V-sync on CRT monitors and while plasma and LCD screens don't have vertical retrace periods the same principle still stands - the image must be updated between refreshes.

Kaivosukeltaja

Posted 2011-09-22T19:53:07.543

Reputation: 235

0

Unfortunately, I do not have an explanation. However, it definitely does make sense to have frame rate > refresh rate. You can experience this very well with head mounted displays (every Oculus Rift Demo benefits significantly from having much higher frame rates than the 60 Hz of its LCD display). Other answers suggests that rendering at much high frame rates results in discarding these frames entirely. However, this would only be the case if the display refresh is based on a single frame. My understanding of the refresh procedure (even for LCD displays) is that the iteration over all pixels takes a certain amount of time, namely the refresh interval. Each pixel is refreshed with the new color value that is on the corresponding position in the current framebuffer (which is updated at a higher frequency). This means that during one iteration over all pixels, the display will display several different rendered frames, which is also the reason for tearing (a moving vertical line might have an offset at the point the framebuffer was refreshed). A possible explanation why having higher frame rates feels so much better (especially with HMDs) is that it might be beneficial to have a more recent rendering even if only small parts of the screen are affected by these fast updates.

bluenote10

Posted 2011-09-22T19:53:07.543

Reputation: 113