01 · THE CHAIN

Click to photon, and where the milliseconds hide.

Input lag is the total time between moving your hand and the screen showing the result. It is a chain, and one link usually dominates the rest.

StageTypical costWhat controls it
Peripheral1 to 8 msPolling rate, sensor, wireless implementation, switch debounce
OS and game input handling1 to 5 msInput processing, background CPU contention
Render queue0 to 60 msHow many frames the CPU is allowed to run ahead of the GPU
GPU render timeFrame timeSettings, resolution, GPU load
Presentation0 to 30 msVertical sync behaviour, buffering, whether the frame waits for a refresh
Display1 to 20 msPanel processing, response time, overdrive, picture modes

Look at the ranges rather than the totals. The render queue and presentation stages have the widest spread, which is exactly why they are worth fixing first. A better mouse saves a couple of milliseconds; an unbounded render queue at high GPU load can cost forty.

02 · THE BIGGEST WIN

Stop the CPU running frames ahead of the GPU.

When the GPU is fully loaded, the CPU keeps queuing frames it cannot yet draw. Every queued frame is input you have already given that the screen has not shown.

The fix has a vendor name on each platform: NVIDIA Reflex, AMD Anti-Lag and Intel XeLL. All three do essentially the same thing — keep the queue nearly empty by pacing the CPU to the GPU, so a frame is submitted just in time rather than early.

  • In-game Reflex or Anti-Lag is the best version. The game itself knows when it sampled input, so an integrated implementation beats a driver-level approximation.
  • Use the driver setting when the game has none. Low Latency Mode set to Ultra, or the driver-level Anti-Lag, is the fallback.
  • Ignore the “Boost” variants unless you are GPU-limited and plugged in. They raise clocks at idle to shave a little more, at a real power cost.
  • It does nothing when you are CPU-limited. If the GPU is at 60 percent load, the queue was already short and there is nothing to drain.

If you change one setting today, change this one. Enabling in-game Reflex or Anti-Lag in a GPU-limited game is routinely worth more than every other item in this guide combined.

03 · THE ARITHMETIC

Cap the frame rate below the refresh rate. Here is why.

On a variable-refresh display, letting the frame rate reach the panel maximum pushes you back into the vertical-sync path you installed the display to avoid.

Variable refresh rate — G-Sync, FreeSync, VESA Adaptive-Sync — works by matching the panel to the frame rate. That only works inside the panel’s range. Once the frame rate hits the ceiling, one of two things happens: with vertical sync on, frames wait, and latency jumps; with it off, the frame tears. A cap a few frames below the ceiling keeps you inside the variable range at all times.

Display refreshSuggested capNotes
60 Hz57 fpsSmall headroom is enough at low refresh rates.
120 Hz116 fps
144 Hz138 fpsThe classic case; three to six frames of headroom.
240 Hz232 fpsHeadroom scales roughly with refresh rate.
360 Hz and aboveRefresh minus about 3 percentAt this point the queue matters far more than the cap.

The combination that works

  • Variable refresh: on, in both the driver and the display’s own menu. Many panels ship with it disabled.
  • Vertical sync: on in the driver, off in the game. This sounds wrong and is the standard recommendation: the driver-level setting acts as a tear-preventing backstop that the frame cap keeps you from ever reaching.
  • Frame cap: set once, below the ceiling. Prefer the in-game limiter or the driver limiter; third-party limiters add their own overhead.
  • Latency reduction: on. It is what keeps the queue empty inside that arrangement.

A stable cap beats a higher average. A locked 116 fps feels better than an 95-to-144 swing, because your hands track frame-time consistency, not the number in the corner.

04 · THE HARDWARE ENDS

Small, real, and mostly free.

The display

  • Use the game or PC picture mode. Cinema and Vivid modes add processing. On a TV, game mode is frequently worth 20 to 80 ms on its own — the single largest hardware-side saving available to anyone playing on a television.
  • Turn off motion interpolation, noise reduction and dynamic contrast. All three buffer frames to work.
  • Set overdrive to the middle option. The most aggressive setting usually introduces overshoot artefacts and rarely helps latency.
  • Confirm the refresh rate is actually set. Windows regularly leaves a high-refresh panel at 60 Hz after a driver update or a cable change.

Peripherals

  • 1000 Hz polling is enough. Beyond that, returns are tiny and CPU cost is real. Verify it is set rather than assuming.
  • Modern wireless is fine. A current low-latency wireless mouse is not the reason you lost the duel. Bluetooth for gaming input is a different story.
  • Turn off keyboard and mouse software effects that sync to the system. Lighting synchronisation can hold a CPU thread at surprising moments.
  • Plug into the motherboard, not a hub. Cheap hubs and unpowered docks add jitter, which is worse than a constant delay.

05 · THE MYTHS

Five things that cost time and change nothing.

MYTH—01 Registry latency tweaks

Copy-pasted registry bundles from forums mostly toggle settings that no longer exist. Some disable power management in ways that hurt.

MYTH—02 Stripped-down Windows builds

Modified installation images trade a couple of milliseconds you cannot measure for missing security updates you will eventually need.

MYTH—03 Disabling every service

On any modern multi-core CPU the background load is not your bottleneck. Close the overlay-heavy applications and stop there.

MYTH—04 Frame generation for responsiveness

It raises smoothness and latency together. Excellent for a single-player game on a high-refresh panel, wrong for anything competitive.

MYTH—05 Uncapped frame rates

Above your refresh ceiling, extra frames are discarded. You get heat, fan noise and a full render queue in exchange for nothing.

06 · MEASUREMENT

Confirm the change instead of believing it.

Every setting on this page has a placebo twin. Measure before and after, or you are collecting folklore.

  • In-game latency overlays. Games with Reflex integration frequently expose a render-latency figure directly. It is the easiest honest number available.
  • Vendor overlays. NVIDIA and AMD both surface a latency metric in their own overlay for supported titles.
  • PresentMon. Intel’s open capture tool records frame times, present timing and stalls for any game. It is the right tool when you want data rather than a number on screen.
  • A phone camera. Record at a high frame rate, point it at mouse and monitor together, and count frames between the movement and the response. Crude, hardware-independent, and good enough to detect a 30 ms change.

Test it properly

  • Change one setting at a time and re-measure.
  • Use the same scene, the same graphics settings and a similar GPU load each run.
  • Record the numbers. Latency differences below about 5 ms are not reliably perceptible, so a change that small is not worth keeping if it costs you anything else.
  • Check frame-time consistency alongside the average. Stutter reads as lag even when the mean latency is unchanged.

07 · QUICK ANSWERS

Input lag, briefly.

What is the single best setting to reduce input lag?

Enable the in-game latency reduction feature: NVIDIA Reflex, AMD Anti-Lag or Intel XeLL. When the GPU is fully loaded, it keeps the render queue nearly empty, which is where most avoidable latency accumulates. In a GPU-limited game it is usually worth more than every other change combined.

Should I cap my frame rate?

On a variable refresh display, yes. Cap a few frames below the panel maximum, for example 138 fps on a 144 Hz display, so the frame rate stays inside the variable refresh range and never falls back to the vertical sync path. A stable cap also feels better than a fluctuating higher average.

Does V-Sync add input lag?

Traditional vertical sync does, because frames wait for a refresh interval. The recommended arrangement on a variable refresh display is vertical sync enabled in the driver, disabled in the game, with a frame cap below the refresh ceiling. The cap means you never reach the point where vertical sync engages.

Is a wireless mouse worse for input lag?

A modern low-latency gaming wireless mouse is effectively equivalent to a wired one, on the order of a millisecond or two. Bluetooth peripherals are a different case and are not suitable for latency-sensitive play. Either way, this stage of the chain is small compared with the render queue.

How do I measure input lag myself?

Use an in-game or vendor overlay that reports render latency, capture frame timing with PresentMon, or record mouse and screen together with a high-frame-rate phone camera and count the frames between movement and response. Change one setting at a time and compare against a baseline in the same scene.