惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Apple Machine Learning Research
Apple Machine Learning Research
爱范儿
爱范儿
博客园_首页
博客园 - 【当耐特】
V
Visual Studio Blog
博客园 - 叶小钗
月光博客
月光博客
美团技术团队
J
Java Code Geeks
小众软件
小众软件
Y
Y Combinator Blog
博客园 - Franky
Martin Fowler
Martin Fowler
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
IT之家
IT之家
MyScale Blog
MyScale Blog
人人都是产品经理
人人都是产品经理
Microsoft Security Blog
Microsoft Security Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
阮一峰的网络日志
阮一峰的网络日志
酷 壳 – CoolShell
酷 壳 – CoolShell
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
云风的 BLOG
云风的 BLOG

Latest from Tom's Hardware in News

Analytics group signals possible delays at 40% of AI data center construction sites — companies deny schedule holdups, but satellite imagery indicates otherwise Intel hires tenured Samsung exec to lead Foundry Services — signals company focus on winning business from potential Foundry suitors Elon Musk pushing forward with Terafab at Microsoft's April patch puts Windows domain controllers into reboot loops — third known issue from KB5082063… AMD Ryzen 9 9950X3D2 appears on Amazon with $1,000 pre-order price — AMD confirms recommended pricing is still set… AMD's market cap hits all-time high, Intel hits 25-year high on Agentic AI's insatiable demand for CPUs Meta raising Quest headset prices due to AI-driven RAM shortage — Quest 3 to cost $600, Quest 3S $350 from April… Elegoo announces the Jupiter 2 resin 3D printer for $949, early bird price of $849 — new model offers massive print volume but is still physically smaller than previous models Pragmata PC performance tested: 18 GPUs take us to the Moon Chinese fabs import record volumes of US chipmaking equipment via Singapore and Malaysia — homegrown tool makers booked record 2025 revenues as price competition squeezes margins US appeals court restarts $3 billion patent infringement lawsuit against Intel — VLSI case from 2017 returns after… Two US citizens get combined 16 years in prison for running North Korean laptop farms — fake remote IT work scheme netted DPRK $5 million in around three years Intel launches Wildcat Lake as Core Series 3 for value laptops and edge systems — six consumer SKUs built on 18A promise Legendary Qualcomm, Apple, and Nuvia alumni form new CPU startup — Nuvacore promises to Bambu updates its 3D printers to print unique hues or gradients using two or three filaments — company acknowledges OrcaSlicer-FullSpectrum fork as the basis for the color prediction part of the new feature Broadcom to supply Meta with custom silicon through 2029 — Broadom CEO Hock Tan departs Meta Anonymous perps behind 86 million files scraped from Spotify hit with $322 million court judgement — Anna Non-functioning counterfeit Samsung 990 Pro SSDs are circulating in Europe — Despite convincing packaging, blue… Oklahoma farmer arrested and jailed for trespassing during AI data center town hall — removed by officers after going a few seconds over allotted speaking time, trying to hand paperwork to counselors Virginia voter support for new data centers collapses from 69% in 2023 to 35% in new poll — Multi-gigawatt, 37-building Digital Gateway project abandoned Struggling shoemaker and apparel brand Albird pivots to AI data centers, stock jumps 580% in a single day — sells core business and leveraging $50 million in financing to become a GPU-as-a-Service and AI cloud solutions provider IPv6 usage reaches historic 50% across Google services, matching IPv4 — increased usage eases pressure on the IPv4 address market as 'new' protocol designed in 1998 finally hits its stride Engineer open-sources DIY radar system that's 95% cheaper than $250,000 commercial offerings, has 20 kilometer range — Moroccan engineer designs Aeris-10 radar, shares it on GitHub Elon Musk demonstrates first sample of Tesla AI5 processor, accidentally thanks TSC rather than TSMC  — claims 40X performance boost over the predecessor Valve might be adding a 30-day price tracker to Steam — feature is already available in some EU countries to spoof… Memory cards and flash drives prices rocket 124%, some products peak at 261% jump — increases from 2025 driven by AI chip shortage across a range of formats and capacities Netgear secures conditional approval from the FCC following router ban — company can continue importing foreign-made routers through October 2027 China tests deep-sea electro-hydrostatic actuator that can cut undersea cables at a depth of 3,500 meters — state hails successful trial and hints at deployment readiness Iran reportedly bought an in-orbit Chinese satellite to target US military sites in the Middle East — purchase agreement included ongoing ground control services based in China Our lifestyle tech colleagues at Tom's Guide have overhauled their site for smarter shopping — more video and access to experts make it 'the biggest relaunch in our history'
We tested Advanced Shader Delivery on the RX 9070 XT in s...
Dan Mateescu · 2026-05-24 · via Latest from Tom's Hardware in News
Advanced Shader Delivery
(Image credit: Tom's Hardware)

Today, we will take a look at Advanced Shader Delivery (ASD) – a new gaming feature aimed at improving the overall user experience by reducing load times dramatically and improving 1% low FPS. We tested six games, measuring up to a 95% improvement in game loading times and solid improvements in 1% Low FPS in some titles. We will explain the issues that it aims to fix, we will go into detail about its functionality, and then we will test it in several games with on vs off comparisons.

Shader compilation stutter has been the bane of every PC gamer’s existence for a long time. Imagine finally sitting down after school or work to play a highly anticipated new release, only to spend several minutes waiting for shaders to precompile. Worse yet, even after that lengthy process, some shaders may still compile during gameplay, causing noticeable stuttering. First impressions matter, and technical issues like these can quickly sour the experience.

Pipeline State Objects (PSOs) define how input data is interpreted and rendered by the hardware when submitting work to the graphics card. PSO creation is also where shader compilation and related stalls happen. Modern games can contain such a massive number of PSOs that engines are unable to fully enumerate them ahead of time. Developers have introduced various mitigation techniques, but these are ultimately compromises that can still miss certain shaders during pre-compilation. In theory, allowing every player to locally precompile every possible shader permutation could eliminate these issues, but in large modern titles, that process could potentially take hours.

That is why Microsoft has introduced Advanced Shader Delivery.

What is Advanced Shader Delivery?

What is Advanced Shader Delivery?

Advanced Shader delivery is a feature that aims to eliminate long shader pre-compilation and shader compilation-related stuttering in games by distributing precompiled shaders when downloading a game — those shaders are downloaded just like other parts of the game. In other words, faster initial load times and smoother performance when first playing a game after installation, a game update, or a driver update.

The idea is that developers will programmatically capture and generate a new type of asset from pipeline state object inputs, called a State Object Database (SODB.) An SODB is a SQLite3 database that contains the shaders, as well as the structure for how to group them into PSOs.

The next step after collecting the SODBs is to precompile shaders using offline compilers. Compilation happens outside of the game and does not require a GPU. The SODB is converted into a precompiled shader output that can target a wide range of hardware without needing that hardware to be physically present. This output is called a precompiled shader database (PSDB), which can be registered for a game and distributed by the Xbox store alongside the game to supplement the shader cache.

Get Tom's Hardware's best news and in-depth reviews, straight to your inbox.

After installing a game with Advanced Shader Delivery support, the Xbox store downloads an update containing the precompiled shaders. As you can see below, the ‘Shaders’ folder will contain an SODB and PSDB file after this update.

Advanced Shader Delivery

(Image credit: Tom's Hardware)

When a game runs for the first time, all the shaders it needs will already be available. The game will see this and will skip the compilation step on the gaming device. If a device requires a driver update, the shaders will be updated automatically.

Theoretically, if developers programmatically capture SODBs with every required shader represented in the PSDB – and the system functions correctly – a game could achieve a 100% cache hit rate on its first run. This would not only dramatically reduce initial load times but could also entirely eliminate shader compilation stutter during gameplay.

Microsoft recently expanded the public preview for Advanced Shader Delivery with support for dedicated and integrated AMD GPUs on desktops. However, not all system configurations currently support Advanced Shader Delivery, even if you own an AMD GPU.

The device requirements are as follows:

  • OS: Windows 11 24H2 or higher
  • Xbox Gaming Services: 37.113.11003.0 or higher (Microsoft Store > Library > Update Gaming Services)
  • Xbox Insider Hub: Open Xbox Insider Hub > Select Previews > PC Gaming Preview
  • GPU: AMD RDNA 3, RDNA 3.5, RDNA 4 architectures
  • Driver: Adrenalin 26.5.2 or higher

Advanced Shader Delivery is currently only supported on the Xbox store, but it is coming to other storefronts in the future.

NVIDIA and Intel GPUs are expected to receive support in the near future, although Intel has a similar technology on its graphics cards called “Precompiled Shader Distribution.”

If Advanced Shader Delivery is working, ‘Precompiled shaders installed’ will appear in the bottom left corner of the launch window.

With all that said, let’s see how it performs in practice.

Load Time and Performance Tested

Load Time and Performance Tested

Advanced Shader Delivery is supported in a little over 30 games. It is available in every game that initially supported the feature on the ROG Ally, plus the recently released Forza Horizon 6.

We selected six games known for lengthy shader pre-compilation times, shader compilation-related stuttering, or both.

The on vs off comparisons were run with the exact same settings for each individual game, but we did not use maximum settings. We used custom settings to get a playable experience on the 9070 XT.

There is no official way to disable Advanced Shader Delivery, but we managed to disable it by deleting the files in the Shaders folder of each game and then disconnecting the system from the internet so that the Xbox store will not download those files upon launching the game.

Each test was performed after a fresh driver install.

Since ASD is only supported on AMD GPUs, we used a Radeon RX 9070 XT for our testing.

Test system

  • PowerColor Red Devil RX 9070 XT
  • Ryzen 7 9800X3D
  • 64GB (2x32GB) G.SKILL Flare X5 DDR5 @6200 MHz CL30
  • Crucial T700 Gen5 SSD
  • ASUS ROG STRIX B850-F Gaming WiFi
  • Corsair Nautilus 360 RS AIO Cooler
  • HAGS enabled
  • Windows 11 25H2 (Build 26200.8457)
  • Adrenalin 26.5.2
  • NVIDIA driver 596.49

Forza Horizon 6

Advanced Shader Delivery

(Image credit: Tom's Hardware)

Forza recently launched with Advanced Shader Delivery support. Both the Forza Horizon and Forza Motorsport series are known for having lengthy pre-compilation steps. As such, it is no surprise that ASD dramatically reduces the initial game load time.

Advanced Shader Delivery

(Image credit: Tom's Hardware)

From 48 seconds down to just 2 seconds. That’s a whopping 96% improvement in load time.

Not only did we see a reduction in load time, but gameplay performance was also smoother.

Advanced Shader Delivery

(Image credit: Tom's Hardware)

During the first stage of the prologue, there is a nasty shader compilation stutter on the very first run of the game with ASD disabled. With ASD enabled, that stutter is no longer present.

Below you can see a comparison between our test system paired with an RTX 5090 vs an RX 9070 XT with ASD enabled. This is not a comparison between the two GPUs, as the 5090 is far more powerful, which is evident from the average framerate. Indeed, NVIDIA GPUs will also support this feature in the near future. Rather, it serves as an illustration that highlights how shader compilation stutter can bring even the most powerful system to its knees.

Advanced Shader Delivery

(Image credit: Tom's Hardware)

Both of the runs shown above were performed with the same settings. With the 5090 (top) plugged into our system, we experienced a massive stutter on the first run, that brings the 1% low to 3 FPS at this particular point of the scene. Meanwhile, the 9070 XT (bottom) cruises past this point with a smooth frametime on the very first run.

The Outer Worlds 2

Advanced Shader Delivery

(Image credit: Tom's Hardware)

The Outer Worlds 2 has a very long shader pre-compilation step that takes almost 3 minutes, so it is a very good candidate for our testing.

Advanced Shader Delivery

(Image credit: Tom's Hardware)

From 2 minutes and 52 seconds down to just 9 seconds. That’s a 95% improvement, but more crucially, it cuts down your waiting time by an incredible 2 minutes and 43 seconds.

Advanced Shader Delivery

(Image credit: Tom's Hardware)

We did not experience any shader compilation stutter in our run with ASD disabled, so there was no improvement in performance here.

Ninja Gaiden 4

Advanced Shader Delivery

(Image credit: Tom's Hardware)

Ninja Gaiden 4 does not have a pre-compilation step with ASD disabled, so there is no improvement in load time.

However, we did experience a couple of minor stutters with ASD disabled in our first run that were no longer there in the second run. These are shader compilation-related stutters.

Advanced Shader Delivery

(Image credit: Tom's Hardware)

The game was mostly smooth during our runs, but those two minor dips were enough to give ASD about a 10% edge in 1% lows. This is important, because those dips came during combat.

Avowed

Advanced Shader Delivery

(Image credit: Tom's Hardware)

Avowed is another game that has a lengthy pre-compilation process of almost 3 minutes.

Advanced Shader Delivery

(Image credit: Tom's Hardware)

This is a 78% improvement in initial load time. While not as dramatic as what we saw in Forza Horizon 6 and The Outer Worlds, it still cuts your initial waiting time by 2 minutes and 16 seconds.

Advanced Shader Delivery

(Image credit: Tom's Hardware)

There were no shader compilation stutters here with ASD on or off, so the performance remains the same.

Hogwarts Legacy

Advanced Shader Delivery

(Image credit: Tom's Hardware)

Hogwarts Legacy’s pre-compilation is not as long as others we have seen, but it does take over a minute.

Advanced Shader Delivery

(Image credit: Tom's Hardware)

We see a 56% reduction in load time. Quite a bit lower than the previous games we tested, but it is nothing to sneeze at.

Advanced Shader Delivery

(Image credit: Tom's Hardware)

Performance remains the same whether you enable or disable ASD as we encountered no shader compilation related stuttering.

Silent Hill f

Advanced Shader Delivery

(Image credit: Tom's Hardware)

Silent Hill f does not have a pre-compilation phase, so there is no improvement in initial load time.

However, the game does have some rather significant shader compilation stutters in the town area at the beginning of the game, as seen below.

Advanced Shader Delivery

(Image credit: Tom's Hardware)

We were hoping that ASD would entirely eliminate those stutters, but unfortunately, that is not the case.

Advanced Shader Delivery

(Image credit: Tom's Hardware)

Unlike Forza Horizon 6 and Ninja Gaiden 4, Silent Hill f’s shader stutters are not eliminated by ASD, and performance remains the same.

It's unclear whether this stems from an API limitation or the developer failing to supply all shaders to the SODB. Either way, it serves as an example that – while the technology is genuinely impressive – it still needs some work to completely eliminate shader compilation stutter.

The Verdict

Our testing shows that Advanced Shader Delivery can significantly improve the player experience. A gamer’s first impression is critical, and nothing sours it faster than technical issues. Being able to load right into a game without waiting several minutes and having smooth performance unencumbered by intrusive shader compilation stutter should be the standard.

Advanced Shader Delivery delivered this experience in most of the titles we tested. However, there is still work to be done – whether by Microsoft, game developers, or both – to make the feature consistently reliable across all games.

Dan Mateescu is a PC enthusiast with many years of experience benchmarking PC hardware. In 2021, he started his own YouTube channel called 'Compusemble' where he benchmarks hardware in video games and the latest tech demos.