The important limitation is equally clear: this does not turn shader stutter off across Windows 11, nor does it retrofit every DirectX 12 game. A developer must prepare the game for Advanced Shader Delivery, submit the required shader data, and publish through a storefront that implements the delivery workflow. At present, Microsoft’s visible player-facing deployment remains tied to the Xbox PC distribution path and supported hardware configurations.
Microsoft’s own developer material confirms the underlying submission mechanism. Studios create a State Object Database, or SODB, containing the game’s Direct3D 12 pipeline and state-object information. The store can then compile that data server-side with GPU-vendor tooling into a precompiled shader database matched to the player’s graphics driver and adapter family, and deliver that result alongside the game.
That architecture is Microsoft’s attempt to address a problem that consoles largely avoid. A console game targets a fixed graphics stack; a PC title has to account for a sprawling combination of NVIDIA, AMD, Intel and Qualcomm hardware, driver releases, operating-system versions, graphics settings, and engine-level shader permutations. When a game does not have a usable shader cache for the machine in front of it, it may compile shaders while loading or, worse, while rendering a new effect or area. The latter is what produces the sharp frametime spikes players call shader-compilation stutter.
Self-service is the real change for studios
Microsoft introduced Advanced Shader Delivery on the ROG Xbox Ally and ROG Xbox Ally X in October 2025, initially without requiring individual game studios to integrate the feature. At GDC in March 2026, Microsoft said it planned to let developers self-enable support through the Xbox Store, with third-party trials scheduled to start in May.
By June, Microsoft was already telling developers that they could upload a title’s SODB to Xbox Partner Center for precompilation. That timing matters when reading the new report: the September announcement appears to mark the wider availability or formalization of self-service access, rather than the first moment that third-party SODB submission existed. Microsoft has not published a matching new Windows or DirectX blog post detailing a September rollout, so the precise boundary between the prior limited-preview workflow and the newly described access is not yet documented publicly.
Still, the practical shift is substantial for a studio that previously needed close coordination with Microsoft. A developer can now build the shader capture into its own release process, measure whether the resulting precompiled database actually covers common gameplay, and submit it as part of the package publishing workflow. Microsoft’s DirectX samples document both manual capture through d3dconfig and programmatic SODB generation, while the Xbox Game Package Manager and Package Uploader are used for package submission.
The new tools do not eliminate the engineering work. They make that work repeatable.
A studio still needs to exercise the portions of a game likely to create pipeline states: menus, major maps, character effects, weather systems, ray-traced modes, different quality presets, and vendor-specific render paths. If a state was never captured into the SODB, the shipped precompiled database cannot magically cover it. The game may still compile that shader locally, which means intermittent stutter remains possible even in an ASD-enabled title.
The Xbox Store remains the gatekeeper
Microsoft has described Advanced Shader Delivery as a storefront-capable DirectX mechanism, not a technology inherently exclusive to the Xbox app. Its D3D shader-cache registration specification explicitly describes installers such as the Xbox Store and Steam registering SODBs and installing matching precompiled shader databases. The DirectX API work is therefore broader than a single Microsoft storefront.
But capability on paper and consumer availability are two separate things. A storefront must operate the server-side compilation service, maintain compiler integrations from GPU vendors, select an appropriate package for the player’s driver, distribute updates as drivers change, and handle failed or incomplete shader-cache coverage. Microsoft currently operates that complete pipeline for Xbox PC games. Steam, Epic Games Store, GOG and other PC storefronts have not publicly announced comparable ASD rollout plans.
For players, that means a game appearing in the Xbox app library does not necessarily gain the benefit. It needs an ASD-aware package from the publisher, and the player’s PC must be within a supported hardware and driver path. Microsoft’s June list of participating titles included Avowed, Control Standard Edition, Forza Horizon 5, Forza Horizon 6, Hades 2, Microsoft Flight Simulator 2024, Starfield, S.T.A.L.K.E.R. 2: Heart of Chornobyl and several other games. The list demonstrates adoption, but it is also proof that ASD is opt-in rather than an automatic platform repair for every game on Windows.
Precompilation reduces a cost; it does not erase every hitch
Microsoft’s performance claims should be read as title- and configuration-dependent. The company has cited launch-time reductions as high as 95 percent in supported cases, while earlier material referenced improvements of up to 85 percent in some titles. Those are meaningful results, particularly on handhelds where CPU time, storage bandwidth, battery power and limited cooling make first-run compilation more conspicuous.
They are not a promise of a 95 percent faster launch for all games. Launch time can be dominated by decompression, asset streaming, anti-cheat startup, save synchronization, DRM checks, network services, engine initialization and storage performance. ASD addresses shader compilation when shader compilation is a significant part of the delay.
The same distinction applies to in-game smoothness. A well-covered precompiled shader database can prevent a game from blocking the rendering path while it compiles a new shader. It does not fix CPU-limited simulation, a GPU that lacks sufficient performance, asset-streaming stutter, memory pressure, poor frame pacing elsewhere in the engine, or bugs introduced by a driver update.
Microsoft’s own tooling acknowledges the coverage problem. The DirectX Agility SDK includes statistics APIs intended to show shader-cache hit rates, and PIX can expose those data while a game runs. That gives developers a way to find the gap between “we shipped precompiled shaders” and “our game never has to compile one when the player enters a new scene.”
Large games still face a shader-data problem
The hard engineering issue is scale. Modern engines can create enormous numbers of pipeline state objects based on graphics settings, materials, lighting modes, post-processing features, upscalers, ray tracing and hardware-specific optimizations. Compiling every possible permutation for every supported GPU and driver can create a costly distribution problem of its own.
Microsoft’s proposed answer includes partial graphics programs, which break common portions of a graphics pipeline into reusable pieces rather than precompiling every fully assembled permutation independently. The company has said that support for this approach is still coming for titles with especially large pipeline-state counts.
That is a reminder that ASD is not a shortcut around game optimization. It moves a portion of the work from a player’s CPU and first-run experience into a publisher’s testing, data-capture and release pipeline. Studios that capture realistic gameplay paths and watch cache-hit data can reduce visible stutter; studios that submit narrow or stale coverage will leave the same runtime fallback in place.
For PC gamers, the immediate consequence is modest but concrete: more Xbox PC releases can now arrive with shader precompilation designed into their publishing process, rather than relying on a Microsoft-managed exception program. The broader prize — the same predictable shader delivery across Steam, Epic and other storefronts — still depends on those stores adopting the infrastructure Microsoft has made possible.