Understanding Display Refresh Rate (Hz) & Vertical Synchronization
A monitor's Refresh Rate (Hz) defines the exact frequency at which the physical display panel scans out its active pixel buffer and illuminates a new visual frame each second. A standard 60Hz display updates once every 16.67 milliseconds, a 144Hz panel refreshes every 6.94 milliseconds, while an esports-tier 240Hz or 360Hz monitor refreshes every 4.17ms or 2.78ms respectively.
The operating system's desktop compositor (such as Windows DWM or macOS Quartz) synchronizes its buffer swap chain directly to the monitor's physical Vertical Blanking Interval (VBLANK / VSync). By tracking the timestamp deltas between consecutive requestAnimationFrame compositor triggers using the W3C High Resolution Time API (performance.now()), our engine calculates your exact physical panel frequency with sub-0.01Hz resolution.
Mathematical Relationship: Refresh Frequency vs. Frame Time Interval
The mathematical formula linking refresh rate (f in Hertz) and native frame interval (Δt in milliseconds) is an exact reciprocal relation:
Δt = (1000)(f) ms, f = (1000)(Δt) HzLower frame intervals directly reduce display motion persistence (sample-and-hold motion blur on retina tracking) and minimize human visual system motor latency.

Display Interface Cable Bandwidth & Maximum Refresh Rate Matrix
A high-refresh gaming display will remain hard-locked to 60Hz if connected through a legacy video cable lacking sufficient uncompressed data throughput. The table below details bandwidth specifications across standard display interfaces:
| Interface Standard | Data Bandwidth (Gbps) | 1080p Max Hz | 1440p Max Hz | 4K (2160p) Max Hz | Display Stream Compression (DSC) |
|---|---|---|---|---|---|
| HDMI 1.4 | 8.16 Gbps | 144Hz | 75Hz | 30Hz | Not Supported |
| HDMI 2.0 / 2.0b | 14.4 Gbps | 240Hz | 144Hz | 60Hz | Not Supported |
| HDMI 2.1 (FRL 48G) | 42.6 Gbps | 540Hz | 360Hz | 144Hz / 240Hz (DSC) | Supported (DSC 1.2a) |
| DisplayPort 1.2 | 17.28 Gbps | 240Hz | 165Hz | 75Hz | Not Supported |
| DisplayPort 1.4a | 25.92 Gbps | 540Hz | 240Hz | 144Hz (Native) / 240Hz (DSC) | Supported (DSC 1.2a) |
| DisplayPort 2.1 (UHBR20) | 77.37 Gbps | 540Hz+ | 540Hz | 240Hz (Uncompressed) | Supported (DSC 1.2a) |
Troubleshooting Displays Stuck at 60Hz on Windows 11 & macOS
If your high-refresh monitor tests at only 60Hz, execute the following verified OS-level diagnostic procedures:
- Windows 11 Advanced Display Settings: Right-click desktop → Display settings → Advanced display. Locate the Choose a refresh rate dropdown and select your panel's rated frequency (e.g. 144Hz or 240Hz).
- GPU Control Panel Timing Override: Open NVIDIA Control Panel or AMD Software Adrenalin Edition. Under Change resolution, scroll past the "Ultra HD, HD, SD" TV resolutions down to the PC section to unlock native high-refresh rate options.
- Browser Hardware Acceleration: In Google Chrome, Microsoft Edge, or Brave, navigate to
chrome://settings/systemand toggle on Use graphics acceleration when available. Without GPU acceleration, the browser compositor throttles VSync hooks to 60Hz.