Games for Windows and the DirectX SDK blog

Technical tips, tricks, and news about game development for Microsoft platforms including desktop, Xbox, and UWP


Project maintained by walbourn Hosted on GitHub Pages — Theme by mattgraham
Home | Posts by Tag | Posts by Month

The Many Faces of D3DX12

direct3d

Chuck Walbourn -

The “DirectX Utility Library” (a.k.a. D3DX) has a long and complex history, which has resulted in a lot of confusion for developers. A key design point for D3DX is that it’s not meant to be “required”, and started life as a way to simplify DirectX programming for new developers. The library was it’s most “feature rich” with D3DX9 with helpers for sprite rendering, drawing text, 3D graphics linear algebra math, loading/saving textures in bitmaps, image resizing & format conversion, DXT texture codecs, tangent frame & mipmap generation, the HLSL compiler, an effects (FX) system, shader reflection, a model & animation system, and a slew of other technology projects such as progressive mesh (p-mesh), vertex cache optimization, isochart texture atlasing, and Precomputed Radiance Transfer (RPT) using Spherical Harmonics.

In other words it became an untenable mess of closed-source software that you couldn’t really avoid, rife with potential security risks, which had a complex servicing and deployment story. From the lessons of those years, the DirectX team took a very different approach for D3DX for DirectX 12, a.k.a. D3DX12.

The D3DX12 library is first of all, truly optional. It’s not included in the Windows 10 SDK with the d3d12.h or DXGI headers–a fact which does have some complexities discussed below.

D3DX12 is open-source under the MIT License. In fact, it’s an all inline header so all the code is visible. There is no link library, no DLL to deploy, and developers can change any aspect of the code as they need to. It can be cut & pasted into their projects, or used “as is”.

The D3DX12 Utility header is focused on use for runtime rendering with the DirectX 12 API. It does not include any functionality tied to other APIs like math, image loaders, or sprites. It doesn’t implement any of it’s own file formats, or do any I/O.

What’s in it?

The bulk of the D3DX12.h header are C++ class versions of the core C-style API structs. For Direct3D 11, these were in the core d3d11.h headers–you could define the preprocessor symbols D3D11_NO_HELPERS and/or D3D11_VIDEO_NO_HELPERS to turn them off. Things like CD3D12_RECT, CD3DX12_VIEWPORT, CD3DX12_BLEND_DESC, CD3DX12_RASTERIZER_DESC, etc. which provides C++ constructors and reasonable defaults. There are also a few utility functions sprinkled in as well, such as D3D12CalcSubresource.

D3DX12 does not include code for loading/saving bitmaps as textures, but it does have the UpdateSubresources helpers to simplify basic texture transfer from CPU memory to GPU memory–something that in DirectX 11 was handled behind the scenes.

There’s a set of “State Object Creation Helpers” intended for use with DirectX Raytracing (DXR) and the new Amplification & Mesh shaders. These shader stages do not have dedicated description structures in the Pipeline State Object (PSO), and instead make use of a ‘stream’ data description which these helpers can build. Note you can disable these by defining D3DX12_NO_STATE_OBJECT_HELPERS if you don’t need them in your application.

The latest addition to the library is the “Feature Support Helper” in the form of the CD3DX12FeatureSupport class. You can disable the inclusion of this class by defining D3DX12_NO_CHECK_FEATURE_SUPPORT_CLASS. For more information, see this blog post.

There’s a summary of the content in the header on my DirectX Tool Kit for DX12 wiki and they are documented on Microsoft Docs

Note: The d3dx12.h header originally used __uuidof operator which is a Microsoft language extension. More recent versions avoid this extension for better compiler conformance and portability, but that assumes your DirectX application is linking against dxguid.lib.

Getting the latest D3DX12 header

Since it’s optional and not included in the Windows SDK, there’s a number of ways to obtain d3dx12.h. The Visual Studio “DirectX12 App” templates for UWP development come with a copy if it. I include the header in my Direct3D 12 Game VS Templates for similar reasons.

Officially the ‘latest and greatest’ version is obtained from GitHub. The key thing to remember is that this version assumes you are using the other Direct3D heders from the repository. If you use an older SDK, that version of d3dx12.h won’t compile.

While you can use an older version, there’s been a number of minor fixes and I’ve done a lot of clang/LLVM C++ conformance work for the latest versions as well. I maintain the version on directx-vs-templates to match the latest public one, but mine has a bunch of conditional compilation preprocessor stuff so it will build with older Windows 10 SDKs.

UPDATE: I’ve moved my copy up to a minimum of Windows 10 SDK (19041) because it was getting pretty unwieldy to maintain. You can find versions for older Windows 10 SDKs in the release history, of course.

You can also obtain an older version which supports the Windows 10 SDK (14393) which worked with VS 2015 from this archive.

Moving forward, there is now a GitHub: DirectX-Headers repository which includes the latest Direct3D 12 headers along with the latest D3DX12 utility header in one place.

Because Xbox developers use a specialized version of DirectX for their development, the matching D3DX12 utility header is called d3dx12_x.h and/or d3dx12_xs.h which are part of that development environment’s include paths.

There is also vcpkg port directx-headers for managing use of the DirectX 12 headers including D3DX12 using the C++ Library Manager.

What about everything else?

Of course, there was a lot of really useful stuff in the legacy D3DX library. It was just trying to be too many things at once. In the years since the standalone DirectX SDK was deprecated in favor of a integrated Windows SDK, I’ve put a lot of effort into extracting and refactoring that old code base into a more modern, open-source form. DirectXMath, DirectXTex, DirectX Tool Kit DX11 / DX12, DirectXMesh, and UVAtlas are all direct results of that work. These support DirectX 11 and DirectX 12 development, and in a few cases some legacy Direct3D 9 scenarios.

The D3DCompiler API and HLSL Compiler for Shader Model 2 through 5 is still closed-source, but is in it’s own DLL and is side-by-side redistributable with applications. See HLSL, FXC, and D3DCompile.

The Shader Model 6 DXIL compiler is on GitHub

Credit where credit is due

I did want to end this post with a big thank you to all the Microsoft engineers who worked on D3DX over the years. Like most large corporations, the products Microsoft ships are a reflection of the organization, culture, and processes at the time and D3DX is no exception. In it’s heyday, it was the best way to innovate and ship useful technology to game developers quickly, much faster than the traditional Windows development cycle.

I believe the open source approach is a much improved model for this kind of ‘useful optional stuff’, and that also is a reflection of changes in Microsoft culture and processes. The GitHub libraries I created were all intended to honor the great work done for D3DX over the years, and keep it relevant for modern DirectX development.

Future work

UPDATE: D3DX12 has had some major refactoring lately plus some additional functionality. See the DirectX Developer Blog for more information.

See also: Living without D3DX, The Zombie DirectX SDK