---
title: "Fixing high polling rate mice on Windows in Godot – Godot Engine"
url: https://daily.dev/posts/fixing-high-polling-rate-mice-on-windows-in-godot-godot-engine-ht4hqvqfk
source_url: https://godotengine.org/article/fixing-high-polling-rate-mice-on-windows
type: article
source: "Godot"
published: 2026-08-24T15:10:48.408Z
updated: 2026-08-24T15:11:14.572Z
tags: ["performance", "game-development", "windows", "godot"]
reading_time: 12
upvotes: 14
comments: 2
language: en
---

> ## Documentation Index
> Fetch the complete documentation index at: https://daily.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Fixing high polling rate mice on Windows in Godot – Godot Engine

**[Godot](https://daily.dev/sources/godot)** · 12 min read · 14 upvotes · 2 comments

## Summary

Godot 4.7.2 fixes a major performance bug affecting high polling rate mice (2 kHz and above) on Windows, where framerates could drop to unplayable levels during fast mouse movement. The issue stemmed from Windows dispatching both legacy (WM_MOUSEMOVE) and raw (WM_INPUT) mouse events, overwhelming the input system at high polling rates. The fix buffers raw input reads and limits legacy input dispatch to once per frame, dramatically improving frametime stability. Benchmarks on a high-end PC show 1% low FPS improved by a factor of 45.8 at 8 kHz polling with V-Sync disabled, and near-locked 480 FPS at 8 kHz with V-Sync enabled, compared to near-unplayable performance in 4.7.1.stable.

## Full article

daily.dev links to this article rather than hosting it. Read it at the original source: <https://godotengine.org/article/fixing-high-polling-rate-mice-on-windows>

## Questions this post answers

### Why does my Godot game lag when I use a mouse with 4 kHz or 8 kHz polling rate on Windows?

Windows dispatches both legacy input (WM_MOUSEMOVE) and raw input (WM_INPUT) events simultaneously even in captured mouse mode, and prior to Godot 4.7.2 these were processed in a way that congested the input system at high polling rates. On CPUs with high single-core performance, the threshold was around 1-2 kHz; exceeding it could drop framerate to single digits or below 1 FPS at 8 kHz with V-Sync enabled and captured mouse mode.

_daily.dev surfaces engine-level fixes like this so game developers avoid chasing phantom mouse hardware bugs._

### Does Godot 4.7.2 fix the high polling rate mouse performance issue on Windows?

Yes, Godot 4.7.2 includes a fix for the high polling rate mouse performance issue on Windows, first introduced in the 4.8.dev3 development snapshot. It buffers raw input reads in DisplayServerWindows::process_raw_input(), delays dispatch of WM_INPUT via PeekMessageW(), and limits legacy WM_MOUSEMOVE/WM_NCMOUSEMOVE dispatch to once per frame, restoring stable framerates even at 8 kHz polling rates.

_Developers tracking Godot releases can follow engine fixes like this one on daily.dev before upgrading production projects._

### How much does fixing high polling rate mouse handling improve Godot's frame stability at 8 kHz?

On an AMD Ryzen 9 9950X3D test system, the 1% low FPS improved by a factor of 45.8 with the fix applied. Without V-Sync, captured mouse mode at 8 kHz went from under 1 FPS (over 1000 mspf) to 1703 FPS; with 480 Hz V-Sync enabled, it went from under 1 FPS to a near-locked 477 FPS.

_Benchmark-driven engine fixes like this are worth tracking on daily.dev when tuning game input performance._

## Community discussion

Top comments from developers on daily.dev.

**@soumavadas221b** · 1 upvotes

> Learned something new today

**@heracles2756** · 0 upvotes

> I think this is a valuable fix because high-polling-rate mice can significantly improve input responsiveness and smoothness, especially for modern high-refresh-rate games.

## Similar posts on daily.dev

- [Maintenance release: Godot 4.7.2 – Godot Engine](https://daily.dev/posts/maintenance-release-godot-4-7-2-godot-engine-esmnwbwm1) · Godot · 31 upvotes · 6 comments
- [Release candidate: Godot 4.7.2 RC 1 – Godot Engine](https://daily.dev/posts/release-candidate-godot-4-7-2-rc-1-godot-engine-q7l6iufm9) · Godot · 7 upvotes · 0 comments

---

Tags: [#performance](https://daily.dev/tags/performance), [#game-development](https://daily.dev/tags/game-development), [#windows](https://daily.dev/tags/windows), [#godot](https://daily.dev/tags/godot)

[View this post on daily.dev](https://daily.dev/posts/fixing-high-polling-rate-mice-on-windows-in-godot-godot-engine-ht4hqvqfk)
