Skip to content
Tech News
← Back to articles

Microsoft debuts DirectStorage 1.4 at GDC 2026, with Zstandard compression and GACL — update promises developers improved compression ratios, faster loading, and more

read original get Samsung 980 PRO SSD → more articles
Why This Matters

Microsoft's introduction of DirectStorage 1.4 at GDC 2026 brings significant advancements in game asset streaming by supporting Zstandard compression and the new GACL toolkit. This update aims to improve compression efficiency and reduce load times, potentially enhancing gaming experiences on Windows PCs. However, the actual impact depends on how developers leverage these features and the hardware capabilities of users' systems.

Key Takeaways

Microsoft used its DirectX "State of the Union" session at GDC 2026 to introduce DirectStorage 1.4, the latest update to its storage API designed to accelerate game asset streaming on Windows PCs. The headline feature is support for Zstandard (Zstd) compression, alongside a new toolset called the Game Asset Conditioning Library, or GACL.

If you've never heard of Zstd before, don't feel bad; most haven't. Developed at Facebook (now Meta), Zstd is a modern compression algorithm designed to strike a balance between compression ratio and decompression speed. It's already widely used in places like Linux distributions and cloud infrastructure because it compresses data well but also decompresses extremely quickly, which is a very important trait when you're trying to stream gigabytes of textures and geometry off an SSD while a game is running.

So, DirectStorage 1.4 adds native support for Zstd-compressed assets on both CPU and GPU paths, allowing developers to decompress data either on the CPU or through GPU compute shaders. The update does not replace or deprecate Microsoft's earlier GDeflate compression format, which debuted alongside GPU decompression in DirectStorage 1.1. Instead, Zstd simply becomes another supported option for developers building DirectStorage pipelines.

Article continues below

DirectStorage itself has had a somewhat underwhelming run so far. Despite early demos promising dramatic improvements to loading and asset streaming, only a handful of PC games have meaningfully adopted the technology, and in practice, DirectStorage sometimes improves load times, but it can actually cost a bit of frame rate. The reason is simple: GPU decompression isn't free. When the GPU is spending time unpacking texture data, that's compute time and power budget it can't spend on rendering frames. Since GPU time is usually the most precious resource in a modern game, the benefits of DirectStorage depend heavily on how much spare GPU compute capacity a system has.

3DMark's DirectStorage Feature Test shows the potential of the tech, but it hasn't really materialized in games yet. (Image credit: 3DMark)

Another technical change in the update may help with that. DirectStorage 1.4 adds global D3D12 CreatorID support to the EnqueueRequests function. CreatorIDs allow different GPU workloads to identify themselves to the driver, enabling smarter scheduling decisions when multiple queues are competing for GPU resources. In practical terms, this could help drivers better coordinate DirectStorage decompression work with traditional rendering and compute tasks, reducing the risk that asset streaming workloads interfere with frame rendering.

Arguably, the more interesting addition, though, is GACL, the Game Asset Conditioning Library. GACL is an attempt to standardize the asset pipeline around DirectStorage so developers can ship more compact game data that still streams quickly. Specifically, it's a build-time tool that preprocesses game assets before they're compressed.

By reorganizing and transforming asset data using techniques like data shuffling and entropy reduction, it can significantly improve how well the data compresses with Zstd. Microsoft says the conditioning step can dramatically improve compression efficiency for certain asset types while keeping decompression costs low. DirectStorage then reverses those transformations automatically when the data is loaded.

Stay On the Cutting Edge: Get the Tom's Hardware Newsletter Get Tom's Hardware's best news and in-depth reviews, straight to your inbox. Contact me with news and offers from other Future brands Receive email from us on behalf of our trusted partners or sponsors

... continue reading