⚡ FPS (Frames Per Second)

Quick Summary

FPS (Frames Per Second) is the number of individual image frames a game renders and displays per second. It is the primary metric for measuring game performance and visual smoothness. Higher FPS = smoother motion; lower FPS = choppy, stuttery experience.

Illustration

Standard Targets

FPSExperienceTypical Context
24 FPSCinematic (film standard)Not acceptable for interactive games
30 FPSPlayable minimumConsole games, locked to save GPU budget
60 FPSSmoothPC gaming standard; competitive console gaming
120+ FPSUltra smoothCompetitive gaming; high-refresh-rate monitors
90+ FPSVR required minimumBelow 90 Hz in VR causes motion sickness

Why FPS Matters

  • Responsiveness: Higher FPS reduces input lag — the delay between a button press and on-screen response. Critical in competitive games.
  • Visual smoothness: Fast-moving objects appear less “ghosted” or blurry.
  • VR health: In VR games, frame rates below 90 FPS cause nausea (motion sickness) — a hard technical requirement.

How Engines Achieve High FPS

  • Level of Detail (LOD): Reducing polygon count of distant objects
  • Culling: Not rendering objects outside the camera’s view
  • Shader optimization: Simplifying GPU shader instructions
  • Anti-Aliasing tradeoffs: Cheaper AA methods vs. visual quality

FPS vs Refresh Rate

FPS is a software metric (how many frames the GPU renders). Monitor refresh rate (Hz) is a hardware metric (how many times the display updates per second). For FPS to be perceived, the monitor’s refresh rate must match — a 144 Hz monitor can display up to 144 FPS.

See Also