Skip to content

Commit ecc6560

Browse files
committed
January 2022
1 parent 611e486 commit ecc6560

File tree

5 files changed

+17
-7
lines changed

5 files changed

+17
-7
lines changed

.nuget/directxmath.nuspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@
88
<owners>microsoft,directxtk</owners>
99
<summary>DirectXMath is an all inline SIMD C++ linear algebra library for use in games and graphics apps.</summary>
1010
<description>The DirectXMath API provides SIMD-friendly C++ types and functions for common linear algebra and graphics math operations common to DirectX applications. The library provides optimized versions for Windows 32-bit (x86), Windows 64-bit (x64), and Windows on ARM through SSE2 and ARM-NEON intrinsics support in the Visual Studio compiler.</description>
11-
<releaseNotes>Matches the December 2020 release.</releaseNotes>
11+
<releaseNotes>Matches the January 2022 release.</releaseNotes>
1212
<projectUrl>http://go.microsoft.com/fwlink/?LinkID=615560</projectUrl>
1313
<repository type="git" url="https://github.com/microsoft/DirectXMath" />
1414
<icon>images\icon.jpg</icon>
1515
<readme>docs\README.md</readme>
1616
<license type="expression">MIT</license>
1717
<requireLicenseAcceptance>false</requireLicenseAcceptance>
18-
<copyright>© Microsoft Corporation.</copyright>
18+
<copyright>&#169; Microsoft Corporation. All rights reserved.</copyright>
1919
<tags>C++ native DirectX math nativepackage</tags>
2020
</metadata>
2121

CMakeLists.txt

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

44
cmake_minimum_required (VERSION 3.11)
55

6-
set(DIRECTXMATH_VERSION 3.1.6)
6+
set(DIRECTXMATH_VERSION 3.1.7)
77

88
project(DirectXMath
99
VERSION ${DIRECTXMATH_VERSION}

HISTORY.md

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

77
## Release History
88

9+
### January 2022 (3.17)
10+
* Added ColorsLinear namespace to DirectXColors.h with linear versions of .NET colors
11+
* Optimized the ``XMMatrixRotationRollPitchYaw(FromVector)`` functions
12+
* Fixed overread problem for 16bpp GPU types Load functions:
13+
* ``XMUNIBBLE4``, ``XMU555``, ``XMU565``, ``XMBYTEN2``, ``XMBYTE2``, ``XMUBYTEN2``, ``XMUBYTE2``
14+
* ``XM_CACHE_LINE_SIZE`` updated for ARM/ARM64 targets to 128 bytes
15+
* A few comments added to improve IntelliSense experience
16+
* Conformance improvements for GNU compiler
17+
* Minor code cleanup
18+
919
### January 2021 (3.16b)
1020
* Hot-fixes to resolve build breaks for clang/LLVM and GCC on ARM64
1121
* ``XM_ALIGNED_DATA`` and ``XM_ALIGNED_STRUCT`` macros updated to use C++17 ``alignas`` when available

Inc/DirectXMath.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#error DirectX Math requires C++
1414
#endif
1515

16-
#define DIRECTX_MATH_VERSION 316
16+
#define DIRECTX_MATH_VERSION 317
1717

1818
#if defined(_MSC_VER) && (_MSC_VER < 1910)
1919
#error DirectX Math requires Visual C++ 2017 or later.

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ https://github.com/Microsoft/DirectXMath
66

77
Copyright (c) Microsoft Corporation.
88

9-
**January 2021**
9+
**January 2022**
1010

1111
This package contains the DirectXMath library, an all inline SIMD C++ linear algebra library for use in games and graphics apps.
1212

13-
This code is designed to build with Visual Studio 2017, Visual Studio 2019, or clang/LLVM for Windows. It is recommended that you make use of the latest updates (VS 2017 15.9, or VS 2019 16.4 or later).
13+
This code is designed to build with Visual Studio 2017, Visual Studio 2019, Visual Studio 2022, or clang/LLVM for Windows. It is recommended that you make use of the latest updates (VS 2017 15.9; VS 2019 16.7 or later).
1414

1515
These components are designed to work without requiring any content from the legacy DirectX SDK. For details, see [Where is the DirectX SDK?](https://aka.ms/dxsdk).
1616

@@ -22,7 +22,7 @@ These components are designed to work without requiring any content from the leg
2222

2323
* DirectXMath.h - Core library
2424
* DirectXPackedVector.h - Load/Store functions and types for working with various compressed GPU formats
25-
* DirectXColors.h - .NET-style Color defines in sRGB color space
25+
* DirectXColors.h - .NET-style Color defines in sRGB and linear color space
2626
* DirectXCollision.h - Bounding volume collision library
2727

2828
* ``Extentions\``

0 commit comments

Comments
 (0)