Skip to content

Commit d36af57

Browse files
committed
November 2022
1 parent 0fc79cd commit d36af57

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

.nuget/directxmath.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
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 May 2022 release.</releaseNotes>
11+
<releaseNotes>Matches the November 2022 release.</releaseNotes>
1212
<projectUrl>http://go.microsoft.com/fwlink/?LinkID=615560</projectUrl>
1313
<repository type="git" url="https://github.com/microsoft/DirectXMath.git" />
1414
<icon>images\icon.jpg</icon>

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.14)
55

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

88
project(DirectXMath
99
VERSION ${DIRECTXMATH_VERSION}

HISTORY.md

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

77
## Release History
88

9+
### November 2022 (3.18)
10+
* C++20 spaceship operators for XMFLOAT2, XMFLOAT3, etc. when building with ``/std:c++20 /Zc:_cplusplus``
11+
* Improved conformance for ARM64 when using `/Zc:arm64-aliased-neon-types-`
12+
* Minor code review and CMake project updates
13+
914
### May 2022 (3.17b)
1015
* Hot-fix to address ``-Wreserved-identifier`` warnings with clang v13
1116
* C++20 spaceship operators for XMFLOAT2, XMFLOAT3, etc. when building with ``/std:c++20 /Zc:_cplusplus``

Inc/DirectXMath.h

Lines changed: 1 addition & 1 deletion
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 317
16+
#define DIRECTX_MATH_VERSION 318
1717

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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ https://github.com/Microsoft/DirectXMath
66

77
Copyright (c) Microsoft Corporation.
88

9-
**May 2022**
9+
**November 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

@@ -55,7 +55,7 @@ Documentation is available on the [Microsoft Docs](https://docs.microsoft.com/en
5555

5656
## Compiler support
5757

58-
Officially the library is supported with Microsoft Visual C++ 2017 or later, clang/LLVM v9 or later, and GCC 9 or later. It should also compile with the Intel C++ and MinGW compilers.
58+
Officially the library is supported with Microsoft Visual C++ 2019 or later, clang/LLVM v12 or later, and GCC 9 or later. It should also compile with the Intel C++ and MinGW compilers.
5959

6060
When building with clang/LLVM or other GNU C compilers, the ``_XM_NO_XMVECTOR_OVERLOADS_`` control define is set because these compilers do not support creating operator overloads for the ``XMVECTOR`` type. You can choose to enable this preprocessor define explicitly to do the same thing with Visual C++ for improved portability.
6161

0 commit comments

Comments
 (0)