Microsoft introduced DirectStorage 1.4 at GDC 2026, featuring support for Zstandard (Zstd) compression alongside a new toolset called the Game Asset Conditioning Library, or GACL. The update tackles a practical problem that has plagued PC gaming for years: how to move massive amounts of compressed texture and geometry data from fast NVMe storage directly to the GPU without bogging down the CPU.
Zstandard was developed at Facebook (now Meta) and is a modern compression algorithm designed to strike a balance between compression ratio and decompression speed, already widely used in Linux distributions and cloud infrastructure because it compresses data well but also decompresses extremely quickly. 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 more significant innovation, however, is GACL. GACL is an attempt to standardise the asset pipeline around DirectStorage so developers can ship more compact game data that still streams quickly. Specifically, it is a build-time tool that preprocesses game assets before they are compressed. By reorganising and transforming asset data using techniques like data shuffling and entropy reduction, it can significantly improve how well the data compresses with Zstd.
GACL is designed to work in existing content pipelines delivering up to a 50% improvement in Zstd compression ratios for assets, while keeping runtime decompression cost low when used with DirectStorage. When conditioned data is decompressed during runtime, the API restores it so the GPU receives standard texture data. From the game engine's perspective, the process is largely transparent. That lowers the barrier to adoption and gives developers a way to optimise storage and streaming behaviour without introducing major complexity into the rendering path.
Microsoft has not pursued this alone. The company is co-engineering this update with major hardware vendors to ensure Zstd performs exceptionally well across the PC ecosystem. AMD, Intel, NVIDIA, and Qualcomm have all confirmed they are working on driver-level optimisations tailored for Zstd decompression, with public rollouts expected in the second half of 2026.
The updates arrive at a moment when DirectStorage itself remains underdeveloped in the PC gaming world. DirectStorage adoption has been pretty poor 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. GPU decompression is not free. When the GPU is spending time unpacking texture data, that is compute time and power budget it cannot spend on rendering frames.
Whether GACL and Zstandard support prove more compelling to developers remains an open question. For PC gamers, this is the kind of platform-level change that will depend heavily on developer uptake. It is not a user-facing feature in the same way as a new graphics toggle or frame-generation option, but it could still have practical long-term value. Game studios will need to decide whether reconditioning assets and adopting a new pipeline justifies the engineering effort, even with Microsoft providing open-source reference implementations and vendor backing.
Updates like DirectStorage 1.4, with improved compression support and a more sophisticated asset pipeline, suggest Microsoft is still laying the groundwork for that possibility. The company is not holding its breath, but is not counting the technology out just yet.