Skip to content

Commit bc69cd9

Browse files
committed
May 2026
1 parent 2cad25f commit bc69cd9

6 files changed

Lines changed: 12 additions & 6 deletions

File tree

.nuget/directxtk12_desktop_win10.nuspec

Lines changed: 1 addition & 1 deletion
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 March 31, 2026 release on GitHub.
37+
<releaseNotes>Matches the May 7, 2026 release on GitHub.
3838

3939
DirectX Tool Kit for Audio in this package uses XAudio 2.9 which requires Windows 10 or later.</releaseNotes>
4040
<projectUrl>http://go.microsoft.com/fwlink/?LinkID=615561</projectUrl>

.nuget/directxtk12_uwp.nuspec

Lines changed: 1 addition & 1 deletion
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 March 31, 2026 release on GitHub.</releaseNotes>
37+
<releaseNotes>Matches the May 7, 2026 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>

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ Release available for download on [GitHub](https://github.com/microsoft/DirectXT
66

77
## Release History
88

9+
### May 7, 2026
10+
* SpriteFont file loader updated to fix a potential overflow issue in 32-bit (x86) builds
11+
* XWB reader updated to resolve a potential overflow issue when reading a malformed wavebank file
12+
* CMake project updates
13+
* Minor comments cleanup
14+
915
### March 31, 2026
1016
* Added SpriteFont **SetPixelAlignment** method for opt-in pixel snapping support
1117
* Updated D3DX12 internal copy with latest changes from DirectX-Headers GitHub

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ if(POLICY CMP0162)
77
cmake_policy(SET CMP0162 NEW)
88
endif()
99

10-
set(DIRECTXTK12_VERSION 1.6.5)
10+
set(DIRECTXTK12_VERSION 1.6.6)
1111

1212
if(XBOX_CONSOLE_TARGET STREQUAL "durango")
1313
set(CMAKE_TRY_COMPILE_TARGET_TYPE "STATIC_LIBRARY")

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ https://go.microsoft.com/fwlink/?LinkID=615561
66

77
Copyright (c) Microsoft Corporation.
88

9-
## March 31, 2026
9+
## May 7, 2026
1010

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

build/CompilerAndLinker.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ endif()
6767

6868
#--- General MSVC-like SDL options
6969
if(MSVC)
70-
list(APPEND COMPILER_SWITCHES "$<$<NOT:$<CONFIG:DEBUG>>:/guard:cf>")
70+
list(APPEND COMPILER_SWITCHES /Gd /GS /Zc:forScope /Zc:inline /Zc:wchar_t $<$<NOT:$<CONFIG:DEBUG>>:/guard:cf>)
7171
list(APPEND LINKER_SWITCHES /DYNAMICBASE /NXCOMPAT /INCREMENTAL:NO)
7272

7373
if(WINDOWS_STORE)
@@ -130,7 +130,7 @@ if(CMAKE_CXX_COMPILER_ID MATCHES "Clang|IntelLLVM")
130130
elseif(CMAKE_CXX_COMPILER_ID MATCHES "Intel")
131131
list(APPEND COMPILER_SWITCHES /Zc:__cplusplus /Zc:inline /fp:fast /Qdiag-disable:161)
132132
elseif(CMAKE_CXX_COMPILER_ID MATCHES "MSVC")
133-
list(APPEND COMPILER_SWITCHES /sdl /Zc:forScope /Zc:inline /Zc:wchar_t /fp:fast)
133+
list(APPEND COMPILER_SWITCHES /sdl /fp:fast)
134134

135135
if(WINDOWS_STORE)
136136
list(APPEND COMPILER_SWITCHES /await)

0 commit comments

Comments
 (0)