Windows 11 Windowed Game Optimizations Explained
Windows 11 introduces a dedicated graphics feature called “Optimizations for windowed games” that bridges the performance gap between exclusive fullscreen and windowed modes. Traditionally, running games in borderless or standard windowed mode introduced input latency and dropped frames due to how the Windows Desktop Window Manager (DWM) processed frames. Windows 11 solves this by upgrading legacy presentation models to modern flip-model presentation, reducing input latency, enabling Variable Refresh Rates (VRR), and allowing features like Auto HDR in older DirectX 10 and DirectX 11 titles.
Upgrading from the Legacy Blt Model to the Flip Model
The primary mechanism behind this optimization is the replacement of the legacy BitBlt (Blt) presentation model with the modern Flip presentation model:
- Legacy Blt Model: Older DirectX 10 and 11 windowed games render a frame to an off-screen buffer, which the DWM copies into its own compositing pipeline before sending it to the display. This redundant copy operation adds a delay of at least one frame of input latency and often causes frame pacing inconsistencies.
- Modern Flip Model: The optimization feature redirects rendering calls so the game buffer is shared directly with the DWM. Instead of copying pixel data, the display hardware flips frame memory pointers directly, bypassing compositing overhead. This delivers performance and responsiveness virtually identical to traditional Exclusive Fullscreen (FSE).
Reduced Input Latency and Frame Pacing
By adopting the flip model, the frame delivery pipeline becomes significantly shorter. Games running in windowed or borderless windowed mode no longer suffer from queued buffer delays. This results in sharper mouse tracking, faster input registration, and consistent frame times without needing to take exclusive control of the display monitor.
Variable Refresh Rate (VRR) Support in Windowed Modes
In older Windows versions, technologies like G-Sync, FreeSync, and standard VESA Variable Refresh Rate (VRR) struggled with windowed applications because DWM enforced desktop synchronization. With Windows 11 windowed optimizations:
- The display dynamically synchronizes its refresh rate to the game’s actual frame rate, even while other applications or desktop elements exist in the background.
- Screen tearing and frame stuttering are eliminated without forcing VSync-induced input lag.
Unlocking Auto HDR for Legacy Titles
Because modern flip presentation allows direct control over the display’s swapchain attributes, Windows 11 can apply advanced post-processing pipelines to older windowed games. This enables Auto HDR, which automatically expands standard dynamic range (SDR) DirectX 10 and 11 games to high dynamic range (HDR) color spaces on supported HDR monitors.
How to Enable Optimizations for Windowed Games
While DirectX 12 games utilize modern flip models natively, DirectX 10 and 11 games benefit most from this toggle. To ensure the feature is active:
- Open Settings on Windows 11.
- Navigate to System > Display > Graphics.
- Select Change default graphics settings under the Default settings section.
- Toggle the switch for Optimizations for windowed games to On.
- Restart running games to apply the updated presentation pipeline.