Skip to content

Commit 5c17c20

Browse files
authored
March 20, 2025 (#311)
1 parent 5533c23 commit 5c17c20

6 files changed

+45
-18
lines changed

.nuget/directxtk12_desktop_2019.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ SpriteBatch - simple & efficient 2D sprite rendering
3434
SpriteFont - bitmap based text rendering
3535
VertexTypes - structures for commonly used vertex data formats
3636
WICTextureLoader - WIC-based image file texture loader</description>
37-
<releaseNotes>Matches the October 28, 2024 release on GitHub.</releaseNotes>
37+
<releaseNotes>Matches the March 20, 2025 release on GitHub.</releaseNotes>
3838
<projectUrl>http://go.microsoft.com/fwlink/?LinkID=615561</projectUrl>
3939
<repository type="git" url="https://github.com/microsoft/DirectXTK12.git" />
4040
<icon>images\icon.jpg</icon>

.nuget/directxtk12_uwp.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ SpriteBatch - simple &amp; efficient 2D sprite rendering
3434
SpriteFont - bitmap based text rendering
3535
VertexTypes - structures for commonly used vertex data formats
3636
WICTextureLoader - WIC-based image file texture loader</description>
37-
<releaseNotes>Matches the October 28, 2024 release on GitHub.</releaseNotes>
37+
<releaseNotes>Matches the March 20, 2025 release on GitHub.</releaseNotes>
3838
<projectUrl>http://go.microsoft.com/fwlink/?LinkID=615561</projectUrl>
3939
<repository type="git" url="https://github.com/microsoft/DirectXTK12.git" />
4040
<icon>images\icon.jpg</icon>

Audio/AudioEngine.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -603,14 +603,14 @@ HRESULT AudioEngine::Impl::Reset(const WAVEFORMATEX* wfx, const wchar_t* deviceI
603603
mX3DCalcFlags |= X3DAUDIO_CALCULATE_REDIRECT_TO_LFE;
604604
}
605605

606-
if (mEngineFlags & AudioEngine_ZeroCenter3D)
606+
if (!(mEngineFlags & AudioEngine_DisableDopplerEffect))
607607
{
608-
mX3DCalcFlags |= X3DAUDIO_CALCULATE_ZEROCENTER;
608+
mX3DCalcFlags |= X3DAUDIO_CALCULATE_DOPPLER;
609609
}
610610

611-
if (!(mEngineFlags & AudioEngine_DisableDopplerEffect))
611+
if (mEngineFlags & AudioEngine_ZeroCenter3D)
612612
{
613-
mX3DCalcFlags |= X3DAUDIO_CALCULATE_DOPPLER;
613+
mX3DCalcFlags |= X3DAUDIO_CALCULATE_ZEROCENTER;
614614
}
615615

616616
//

CHANGELOG.md

+22-10
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,18 @@ Release available for download on [GitHub](https://github.com/microsoft/DirectXT
66

77
## Release History
88

9+
### March 20, 2025
10+
* C++17 `std::byte` support for `FromMemory` functions
11+
* GamePad, Keyboard, and Mouse _GameInput_ implementation now supports both v0 and v1 of the API
12+
* SimpleMath changes for Vector2/Vector3 operators to speed up performance particularly in debug builds
13+
* *DirectX Tool Kit for Audio* changes:
14+
* Added more audio engine flags to control X3DAudio usage: `AudioEngine_DisableLFERedirect`, `AudioEngine_DisableDopplerEffect`, `AudioEngine_ZeroCenter3D`
15+
* Repurposed `SoundEffectInstance_UseRedirectLFE` from an internal flag to a per voice override
16+
* Added `SoundEffectInstance_ZeroCenter3D` as a per voice override
17+
* Bug fixes for recent ``IsValid`` methods
18+
* Code review particularly to remove Windows 7 and Windows 8.0 code paths in shared code
19+
* CMake project updates including support for BUILD_SHARED_LIBS (i.e. DLL vs. static library)
20+
921
### October 28, 2024
1022
* All enums now use ``uint32_t`` as the underlying type rather than ``unsigned long`` or ``int``.
1123
* Added `DDS_LOADER_INGNORE_MIPS` flag to DDSTextureLoader
@@ -45,7 +57,7 @@ Release available for download on [GitHub](https://github.com/microsoft/DirectXT
4557
### October 28, 2023
4658
* Added ``CreateUploadBuffer`` and ``CreateUAVBuffer`` helpers
4759
* Fixed validation bug with WIC loader when using autogen and force RGBA together
48-
* Fixed minor link issue with a Xbox PIX custom memory method
60+
* Fixed minor link issue with a Xbox PIX custom memory method
4961
* Xbox shader compilation now uses ``-HV 2021``
5062
* Additional methods for *DirectX Tool Kit for Audio* emitter for linear and inverse-square falloff curves
5163

@@ -110,7 +122,7 @@ Release available for download on [GitHub](https://github.com/microsoft/DirectXT
110122

111123
### May 9, 2022
112124
* C++20 spaceship operator updates for SimpleMath
113-
* Fixed missing VertexPositionNormal::InputLayout
125+
* Fixed missing `VertexPositionNormal::InputLayout`
114126
* Minor updates for VS 2022 (17.2)
115127
* CMake project updates (now supports MSVC, clang/LLVM, and MinGW)
116128
* Updated D3DX12 internal copy with latest changes from DirectX-Headers GitHub
@@ -127,10 +139,10 @@ Release available for download on [GitHub](https://github.com/microsoft/DirectXT
127139
* Dropped support for legacy Xbox One XDK prior to April 2018
128140

129141
### February 28, 2022
130-
* Minor fix to DescriptorHeap Increment() to return uint32_t instead of size_t
142+
* Minor fix to **DescriptorHeap::Increment** to return `uint32_t` instead of `size_t`
131143
* Updated D3DX12 internal copy with latest changes from GitHub
132-
* SimpleMath Matrix updated with ToEuler and Vector3 version of CreateFromYawPitchRoll methods
133-
* SimpleMath Quaternion updated with ToEuler, RotateTowards, FromToRotation, LookRotation, and Angle methods
144+
* SimpleMath Matrix updated with **ToEuler** and Vector3 version of **CreateFromYawPitchRoll** methods
145+
* SimpleMath Quaternion updated with **ToEuler**, **RotateTowards**, **FromToRotation**, **LookRotation**, and **Angle** methods
134146
* Keyboard updated with new IME On/Off v-keys
135147
* Win32 Mouse now uses ``WM_ACTIVATE`` for more robust behavior
136148
* *DirectX Tool Kit for Audio* updated for Advanced Format (4Kn) wavebank streaming
@@ -160,7 +172,7 @@ Release available for download on [GitHub](https://github.com/microsoft/DirectXT
160172
* Project and code cleanup
161173

162174
### September 30, 2021
163-
* Added ModelBone support for transformation hierarchies
175+
* Added **ModelBone** support for transformation hierarchies
164176
* Rigid-body & skinned animation Draw support added to Model
165177
* Support for loading Visual Studio ``CMO`` models added using BasicEffect or SkinnedEffect materials
166178
* Added type aliases ``Model::EffectCollection``, ``ModelMeshPart::InputLayoutCollection``, ``GeometricPrimitive::VertexCollection`` and ``IndexCollection``
@@ -171,8 +183,8 @@ Release available for download on [GitHub](https://github.com/microsoft/DirectXT
171183

172184
### August 1, 2021
173185
* DebugEffect, NormalMapEffect, and PBREffect updated with instancing support
174-
* GeometricPrimitive updated with DrawInstanced method
175-
* ToneMapPostProcess updated with SetColorRotation method
186+
* GeometricPrimitive updated with **DrawInstanced** method
187+
* ToneMapPostProcess updated with **SetColorRotation** method
176188
* Added VS 2022 Preview projects
177189
* Minor code review
178190

@@ -318,7 +330,7 @@ Release available for download on [GitHub](https://github.com/microsoft/DirectXT
318330
### October 31, 2018
319331
* Model loader for SDKMESH now attempts to use legacy DE3CN compressed normals
320332
+ This is an approximation only and emits a warning in debug builds
321-
* IEffectTextureFactory's CreateTexture interface method now returns the 'slot'
333+
* IEffectTextureFactory's **CreateTexture** interface method now returns the 'slot'
322334
+ This is for use with **GetResource** method
323335
* Minor code review
324336

@@ -443,7 +455,7 @@ Release available for download on [GitHub](https://github.com/microsoft/DirectXT
443455
* Fixed default graphics memory alignment to resolve rendering problems on some hardware
444456
* Added ``forceSRGB`` optional parameter to SpriteFont ctor
445457
* EffectFactory method **EnableForceSRGB** added
446-
* Removed problematic ABI::Windows::Foundation::Rect interop for SimpleMath
458+
* Removed problematic `ABI::Windows::Foundation::Rect` interop for SimpleMath
447459
* Updated D3DX12 internal copy for the Windows 10 Anniversary Update SDK (14393)
448460
* Minor code cleanup
449461

CMakeLists.txt

+14-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@
33

44
cmake_minimum_required (VERSION 3.20)
55

6-
set(DIRECTXTK12_VERSION 1.6.1)
6+
set(DIRECTXTK12_VERSION 1.6.2)
7+
8+
if(XBOX_CONSOLE_TARGET STREQUAL "durango")
9+
set(CMAKE_TRY_COMPILE_TARGET_TYPE "STATIC_LIBRARY")
10+
endif()
711

812
project (DirectXTK12
913
VERSION ${DIRECTXTK12_VERSION}
@@ -196,6 +200,15 @@ set(SHADER_SOURCES ${SHADER_SOURCES}
196200
Src/Shaders/Structures.fxh
197201
Src/Shaders/Utilities.fxh)
198202

203+
# Xbox-specific extensions
204+
if(DEFINED XBOX_CONSOLE_TARGET)
205+
set(LIBRARY_HEADERS ${LIBRARY_HEADERS}
206+
Inc/XboxDDSTextureLoader.h)
207+
208+
set(LIBRARY_SOURCES ${LIBRARY_SOURCES}
209+
Src/XboxDDSTextureLoader.cpp)
210+
endif()
211+
199212
if(MINGW)
200213
set(BUILD_XAUDIO_WIN10 OFF)
201214
endif()

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ http://go.microsoft.com/fwlink/?LinkID=615561
66

77
Copyright (c) Microsoft Corporation.
88

9-
**October 28, 2024**
9+
**March 20, 2025**
1010

1111
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 and Windows 10, game titles for Xbox Series X\|S and Xbox One, and Win32 desktop applications for Windows 11 and Windows 10.
1212

@@ -110,6 +110,8 @@ For a full change history, see [CHANGELOG.md](https://github.com/microsoft/Direc
110110

111111
* 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.
112112

113+
* Support for targeting Xbox One using the legacy Xbox One XDK was retired in March 2023. See the February 2023 or earlier releases of *DirectX Tool Kit* for the required MSBuild project files. It can also be built using the current CMake projects from an *Xbox One XDK Developer Command Prompt* with the addition of CMake 3.20 or later to the path via the `x64-Debug-Durango` or `x64-Release-Durango` CMake preset.
114+
113115
## Support
114116

115117
For questions, consider using [Stack Overflow](https://stackoverflow.com/questions/tagged/directxtk) with the *directxtk* tag, or the [DirectX Discord Server](https://discord.gg/directx) in the *dx12-developers* channel.

0 commit comments

Comments
 (0)