directxtk12_uwp 2021.11.8.1

There is a newer version of this package available.
See the version list below for details.

Requires NuGet 2.8.6 or higher.

dotnet add package directxtk12_uwp --version 2021.11.8.1
NuGet\Install-Package directxtk12_uwp -Version 2021.11.8.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="directxtk12_uwp" Version="2021.11.8.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add directxtk12_uwp --version 2021.11.8.1
#r "nuget: directxtk12_uwp, 2021.11.8.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install directxtk12_uwp as a Cake Addin
#addin nuget:?package=directxtk12_uwp&version=2021.11.8.1

// Install directxtk12_uwp as a Cake Tool
#tool nuget:?package=directxtk12_uwp&version=2021.11.8.1

DirectX Logo

DirectX Tool Kit for DirectX 12

http://go.microsoft.com/fwlink/?LinkID=615561

Copyright (c) Microsoft Corporation.

November 8, 2021

This package contains the "DirectX Tool Kit", a collection of helper classes for writing Direct3D 12 C++ code for Universal Windows Platform (UWP) apps for Windows 11 / Windows 10, game titles for Xbox Series X|S / Xbox One, and Win32 desktop applications for Windows 11 / Windows 10.

This code is designed to build with Visual Studio 2017 (15.9), Visual Studio 2019, Visual Studio 2022, or clang for Windows v11 or later. Use of the Windows 10 May 2020 Update SDK (19041) or later is required.

These components are designed to work without requiring any content from the legacy DirectX SDK. For details, see Where is the DirectX SDK?.

Directory Layout

  • Inc\

    • Public Header Files (in the DirectX C++ namespace):

      • Audio.h - low-level audio API using XAudio2 (DirectXTK for Audio public header)
      • BufferHelpers.h - C++ helpers for creating D3D resources from CPU data
      • CommonStates.h - common D3D state combinations
      • DDSTextureLoader.h - light-weight DDS file texture loader
      • DescriptorHeap.h - helper for managing DX12 descriptor heaps
      • DirectXHelpers.h - misc C++ helpers for D3D programming
      • EffectPipelineStateDescription.h - helper for creating PSOs
      • Effects.h - set of built-in shaders for common rendering tasks
      • GamePad.h - gamepad controller helper using XInput
      • GeometricPrimitive.h - draws basic shapes such as cubes and spheres
      • GraphicsMemory.h - helper for managing dynamic graphics memory allocation
      • Keyboard.h - keyboard state tracking helper
      • Model.h - draws meshes loaded from .CMO, .SDKMESH, or .VBO files
      • Mouse.h - mouse helper
      • PostProcess.h - set of built-in shaders for common post-processing operations
      • PrimitiveBatch.h - simple and efficient way to draw user primitives
      • RenderTargetState.h - helper for communicating render target requirements when creating PSOs
      • ResourceUploadBatch.h - helper for managing texture resource upload to the GPU
      • ScreenGrab.h - light-weight screen shot saver
      • SimpleMath.h - simplified C++ wrapper for DirectXMath
      • SpriteBatch.h - simple & efficient 2D sprite rendering
      • SpriteFont.h - bitmap based text rendering
      • VertexTypes.h - structures for commonly used vertex data formats
      • WICTextureLoader.h - WIC-based image file texture loader
      • XboxDDSTextureLoader.h - Xbox exclusive apps variant of DDSTextureLoader
  • Src\

    • DirectXTK source files and internal implementation headers
  • Audio\

    • DirectXTK for Audio source files and internal implementation headers

MakeSpriteFont and XWBTool can be found in the DirectX Tool Kit for DirectX 11

Documentation

Documentation is available on the GitHub wiki.

Notices

All content and source code for this package are subject to the terms of the MIT License.

For the latest version of DirectXTK12, bug reports, etc. please visit the project site on GitHub.

Comparisons to DirectX 11 Version

  • No support for Visual Studio Directed Graph Shader Language (DGSL) effect shaders (i.e. DGSLEffect). CMO files are loaded using BasicEffect or SkinnedEffect materials.

  • VertexTypes does not include VertexPositionNormalTangentColorTexture or VertexPositionNormalTangentColorTextureSkinning which were intended for use with the DGSL pipeline.

  • DirectX Tool Kit for DirectX 11 supports Feature Level 9.x, while DirectX 12 requires Direct3D Feature Level 11.0. There are no expected DirectX 12 drivers for any lower feature level devices.

  • The library assumes it is building for Windows 10 (aka _WIN32_WINNT=0x0A00) so it makes use of XAudio 2.9 and WIC2 as well as DirectX 12.

  • DirectX Tool Kit for Audio, GamePad, Keyboard, Mouse, and SimpleMath are identical to the DirectX 11 version.

Release Notes

  • In the June 2021 release or later, the VS 2019 projects of this library build the HLSL shaders with Shader Model 6 via DXC. Since the NuGet still builds using VS 2017, the build-in shaders in that version are currently Shader Model 5.1. See this wiki page for more information. The Microsoft GDK projects always use Shader Model 6.

  • Starting with the June 2020 release, this library makes use of typed enum bitmask flags per the recommendation of the C++ Standard section 17.5.2.1.3 Bitmask types. This may have breaking change impacts to client code:

    • You cannot pass the 0 literal as your flags value. Instead you must make use of the appropriate default enum value: AudioEngine_Default, SoundEffectInstance_Default, ModelLoader_Clockwise, DDS_LOADER_DEFAULT, or WIC_LOADER_DEFAULT.

    • Use the enum type instead of DWORD if building up flags values locally with bitmask operations. For example, WIC_LOADER_FLAGS flags = WIC_LOADER_DEFAULT; if (...) flags |= WIC_LOADER_FORCE_SRGB;

  • The UWP projects and the Win10 classic desktop project include configurations for the ARM64 platform. These require VS 2017 (15.9 update) or later to build, with the ARM64 toolset installed.

  • The CompileShaders.cmd script must have Windows-style (CRLF) line-endings. If it is changed to Linux-style (LF) line-endings, it can fail to build all the required shaders.

Support

For questions, consider using Stack Overflow with the directxtk tag, or the DirectX Discord Server in the dx12-developers channel.

For bug reports and feature requests, please use GitHub issues for this project.

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.

When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more informatsion see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

Trademarks

This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow Microsoft's Trademark & Brand Guidelines. Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party's policies.

Credits

The DirectX Tool Kit for DirectX 11 is the work of Shawn Hargreaves and Chuck Walbourn, with contributions from Aaron Rodriguez Hernandez, and Dani Roman.

The DirectX Tool Kit for DirectX 12 is the work of Pete Lewis, Justin Saunders, and Chuck Walbourn based heavily on the DirectX Tool Kit for DirectX 11.

Thanks to Shanon Drone for the SDKMESH file format.

Thanks to Adrian Tsai for the geodesic sphere implementation.

Thanks to Garrett Serack for his help in creating the NuGet packages for DirectX Tool Kit.

Thanks to Pete Lewis and Justin Saunders for the normal-mapped and PBR shaders implementation.

Thanks for Travis Johnson for the mGPU support.

Thanks to Roberto Sonnino for his help with the CMO format and the VS Starter Kit animation.

Product Compatible and additional computed target framework versions.
native native is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2024.2.22.1 790 2/23/2024
2024.1.1.1 1,261 1/1/2024
2023.10.31.1 2,021 10/31/2023
2023.9.6.2 1,996 9/6/2023
2023.4.28.1 3,630 4/29/2023
2023.3.30.1 3,184 3/31/2023
2023.2.7.1 3,111 2/8/2023
2022.12.18.1 2,949 12/19/2022
2022.10.18.1 2,848 10/18/2022
2022.7.30.1 3,634 7/30/2022
2022.5.10.1 2,763 5/10/2022
2022.3.24.1 3,505 3/25/2022
2022.3.1.1 3,281 3/1/2022
2021.11.8.1 2,921 11/9/2021
2021.10.19.1 2,679 10/20/2021
2021.10.15.1 2,800 10/15/2021
2021.10.1.1 2,975 10/1/2021
2021.8.2.1 2,977 8/3/2021
2021.6.10.2 2,781 6/10/2021
2021.4.7.2 2,896 4/7/2021
2021.1.10.1 3,038 1/10/2021
2020.11.12.1 3,121 11/12/2020
2020.9.30.1 2,992 10/1/2020
2020.8.15.1 3,116 8/16/2020
2020.7.2.1 3,308 7/3/2020
2020.6.15.1 2,513 6/15/2020
2020.6.2.1 3,323 6/2/2020
2020.5.11.1 3,088 5/11/2020
2020.2.24.1 2,976 2/25/2020
2019.12.17.1 2,518 12/18/2019
2019.10.17.1 3,285 10/18/2019
2019.8.23.1 2,152 8/23/2019
2019.5.31.1 2,208 5/31/2019
2019.4.26.1 2,294 4/29/2019
2019.2.7.1 2,355 2/10/2019
2018.11.20.1 12,242 11/20/2018
2018.10.31.1 2,187 10/31/2018
2018.10.26.1 2,200 10/26/2018
2018.9.13.1 2,238 9/18/2018
2018.8.18.2 2,300 8/18/2018
2018.7.3.1 2,386 7/3/2018
2018.6.1.2 2,403 6/1/2018
2018.5.14.1 3,542 5/14/2018
2018.4.23.1 2,936 4/24/2018
2017.12.13.1 3,758 12/15/2017
2017.9.22.1 3,674 9/22/2017
2017.6.21.1 3,352 6/21/2017
2017.4.24.1 3,269 4/25/2017
2017.2.10.1 3,487 2/11/2017
2016.12.5.1 3,167 12/8/2016
2016.10.6.1 3,189 10/6/2016
2016.9.15.1 3,169 9/16/2016
2016.9.1.1 3,331 9/2/2016
2016.8.4.1 3,388 8/4/2016
2016.7.18.1 2,697 7/18/2016
2016.6.30.1 3,087 7/1/2016

Matches the November 8, 2021 release on GitHub.