Skip to content

Commit 9260384

Browse files
authored
October 28, 2024 (#544)
1 parent b81e202 commit 9260384

File tree

7 files changed

+37
-6
lines changed

7 files changed

+37
-6
lines changed

.nuget/directxtex_desktop_2019.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<description>This version is for Windows desktop applications using Visual Studio 2019 (16.11) or Visual Studio 2022 and supports Windows 7 / DirectX 11.
1111

1212
DirectXTex, a shared source library for reading and writing .DDS files, and performing various texture content processing operations including resizing, format conversion, mip-map generation, block compression for Direct3D runtime texture resources, and height-map to normal-map conversion. This library makes use of the Windows Image Component (WIC) APIs. It also includes simple .TGA and .HDR readers and writers since these image file format are commonly used for texture content processing pipelines, but are not currently supported by a built-in WIC codec.</description>
13-
<releaseNotes>Matches the September 4, 2024 release on GitHub.</releaseNotes>
13+
<releaseNotes>Matches the October 28, 2024 release on GitHub.</releaseNotes>
1414
<projectUrl>http://go.microsoft.com/fwlink/?LinkId=248926</projectUrl>
1515
<repository type="git" url="https://github.com/microsoft/DirectXTex.git" />
1616
<icon>images\icon.jpg</icon>

.nuget/directxtex_desktop_win10.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<description>This version is for Windows desktop applications using Visual Studio 2019 (16.11) or Visual Studio 2022 and supports Windows 10 / Windows 11 including both DirectX 11 and DirectX 12.
1111

1212
DirectXTex, a shared source library for reading and writing .DDS files, and performing various texture content processing operations including resizing, format conversion, mip-map generation, block compression for Direct3D runtime texture resources, and height-map to normal-map conversion. This library makes use of the Windows Image Component (WIC) APIs. It also includes simple .TGA and .HDR readers and writers since these image file format are commonly used for texture content processing pipelines, but are not currently supported by a built-in WIC codec.</description>
13-
<releaseNotes>Matches the September 4, 2024 release on GitHub.</releaseNotes>
13+
<releaseNotes>Matches the October 28, 2024 release on GitHub.</releaseNotes>
1414
<projectUrl>http://go.microsoft.com/fwlink/?LinkId=248926</projectUrl>
1515
<repository type="git" url="https://github.com/microsoft/DirectXTex.git" />
1616
<icon>images\icon.jpg</icon>

.nuget/directxtex_uwp.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<description>This version is for Universal Windows Platform apps on Windows 10 / Windows 11 using Visual Studio 2022.
1111

1212
DirectXTex, a shared source library for reading and writing .DDS files, and performing various texture content processing operations including resizing, format conversion, mip-map generation, block compression for Direct3D runtime texture resources, and height-map to normal-map conversion. This library makes use of the Windows Image Component (WIC) APIs. It also includes simple .TGA and .HDR readers and writers since these image file format are commonly used for texture content processing pipelines, but are not currently supported by a built-in WIC codec.</description>
13-
<releaseNotes>Matches the September 4, 2024 release on GitHub.</releaseNotes>
13+
<releaseNotes>Matches the October 28, 2024 release on GitHub.</releaseNotes>
1414
<projectUrl>http://go.microsoft.com/fwlink/?LinkId=248926</projectUrl>
1515
<repository type="git" url="https://github.com/microsoft/DirectXTex.git" />
1616
<icon>images\icon.jpg</icon>

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@ 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 ``BytesPerBlock`` utility helper
12+
* Fixed bug in DirectX 12 `CaptureTexture` for MSAA resolve state handling
13+
* texassemble, texconv, texdiag:
14+
* Add "GNU-style" *--long-options* to the command-line tools (all existing switches are still supported)
15+
* Fixed bug in texdiag's ``dumpdds`` command output filename extension handling
16+
* Refactored code to use shared header
17+
* CMake and MSBuild project updates
18+
919
### September 4, 2024
1020
* DDS reader now accepts a variant of the "DX10" extended header
1121
* arraySize of 0 is treated as 1

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
cmake_minimum_required (VERSION 3.20)
55

6-
set(DIRECTXTEX_VERSION 2.0.5)
6+
set(DIRECTXTEX_VERSION 2.0.6)
77

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

DirectXTex/DirectXTex.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ struct IWICImagingFactory;
4747
struct IWICMetadataQueryReader;
4848
#endif
4949

50-
#define DIRECTX_TEX_VERSION 205
50+
#define DIRECTX_TEX_VERSION 206
5151

5252

5353
namespace DirectX

README.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ http://go.microsoft.com/fwlink/?LinkId=248926
66

77
Copyright (c) Microsoft Corporation.
88

9-
**September 4, 2024**
9+
**October 28, 2024**
1010

1111
This package contains DirectXTex, a shared source library for reading and writing ``.DDS`` files, and performing various texture content processing operations including resizing, format conversion, mip-map generation, block compression for Direct3D runtime texture resources, and height-map to normal-map conversion. This library makes use of the Windows Image Component (WIC) APIs. It also includes ``.TGA`` and ``.HDR`` readers and writers since these image file formats are commonly used for texture content processing pipelines, but are not currently supported by a built-in WIC codec.
1212

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

105105
* 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.
106106

107+
* As of the October 2024 release, the command-line tools also support GNU-style long options using ``--``. All existing switches continue to function, but some of the `-` options are now deprecated per this table:
108+
109+
|texassemble||texconv||texdiag||
110+
|---|---|---|---|---|---|
111+
|-tonemap|--tonemap|-badtails|--bad-tails|-badtails|--bad-tails|
112+
|-bgcolor|--gif-bg-color|-fixbc4x4|--fix-bc-4x4|-ignoremips|--ignore-mips|
113+
|-swizzle|--swizzle|-ignoremips|--ignore-mips|-permissive|--permissive|
114+
|-stripmips|--strip-mips|-inverty|--invert-y|-targetx|--target-x||-targety|--target-y|
115+
|||-keepcoverage|--keep-coverage|||
116+
|||-permissive|--permissive|||
117+
|||-reconstructz|--reconstruct-z|||
118+
|||-rotatecolor|--rotate-color|||
119+
|||-singleproc|--single-proc|||
120+
|||-swizzle|--swizzle|||
121+
|||-tgazeroalpha|--tga-zero-alpha|||
122+
|||-timing|--timing|||
123+
|||-tonemap|--tonemap|||
124+
|||-wiclossless|--wic-lossless|||
125+
|||-wicmulti|--wic-multiframe|||
126+
|||-x2bias|--x2-bias|||
127+
107128
## Support
108129

109130
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* or *dx9-dx11-developers* channel.

0 commit comments

Comments
 (0)