Skip to content

Commit be5dfc7

Browse files
authored
October 28, 2024 (#279)
1 parent f9f8385 commit be5dfc7

5 files changed

+12
-4
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 September 4, 2024 release on GitHub.</releaseNotes>
37+
<releaseNotes>Matches the October 28, 2024 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 September 4, 2024 release on GitHub.</releaseNotes>
37+
<releaseNotes>Matches the October 28, 2024 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

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

77
## Release History
88

9+
### October 28, 2024
10+
* All enums now use ``uint32_t`` as the underlying type rather than ``unsigned long`` or ``int``.
11+
* Added `DDS_LOADER_INGNORE_MIPS` flag to DDSTextureLoader
12+
* Fixed bug in ScreenGrab for MSAA resolve state handling
13+
* Added ctor to RenderTargetState for MSAA scenarios
14+
* Refactored CMO structures into their own header
15+
* CMake and MSBuild project updates
16+
917
### September 4, 2024
1018
* HLSL shaders built with `-HV 2021` when using DXIL
1119
* *DirectX Tool Kit for Audio* update

CMakeLists.txt

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

44
cmake_minimum_required (VERSION 3.20)
55

6-
set(DIRECTXTK12_VERSION 1.6.0)
6+
set(DIRECTXTK12_VERSION 1.6.1)
77

88
if(WINDOWS_STORE OR (DEFINED XBOX_CONSOLE_TARGET))
99
set(CMAKE_TRY_COMPILE_TARGET_TYPE "STATIC_LIBRARY")

README.md

+1-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-
**September 4, 2024**
9+
**October 28, 2024**
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

0 commit comments

Comments
 (0)