directxmesh_desktop_2017 2021.6.10.1
VS 2017 is now out of mainstream support. A NuGet that supports VS 2019 (16.9) or later and VS 2022 is available.
See the version list below for details.
Requires NuGet 2.8.6 or higher.
dotnet add package directxmesh_desktop_2017 --version 2021.6.10.1
NuGet\Install-Package directxmesh_desktop_2017 -Version 2021.6.10.1
<PackageReference Include="directxmesh_desktop_2017" Version="2021.6.10.1" />
paket add directxmesh_desktop_2017 --version 2021.6.10.1
#r "nuget: directxmesh_desktop_2017, 2021.6.10.1"
// Install directxmesh_desktop_2017 as a Cake Addin #addin nuget:?package=directxmesh_desktop_2017&version=2021.6.10.1 // Install directxmesh_desktop_2017 as a Cake Tool #tool nuget:?package=directxmesh_desktop_2017&version=2021.6.10.1
DirectXMesh geometry processing library
http://go.microsoft.com/fwlink/?LinkID=324981
Copyright (c) Microsoft Corporation.
June 9, 2021
This package contains DirectXMesh, a shared source library for performing various geometry content processing operations including generating normals and tangent frames, triangle adjacency computations, vertex cache optimization, and meshlet generation.
This code is designed to build with Visual Studio 2017 (15.9), Visual Studio 2019, or clang for Windows v9 or later. It is recommended that you make use of the Windows 10 May 2020 Update SDK (19041) or later.
These components are designed to work without requiring any content from the legacy DirectX SDK. For details, see Where is the DirectX SDK?.
Documentation
Documentation is available on the GitHub wiki.
Notices
All content and source code for this package are subject to the terms of the MIT License.
For the latest version of DirectXMesh, bug reports, etc. please visit the project site on GitHub.
Release Notes
Starting with the June 2020 release, this library makes use of typed enum bitmask flags per the recommendation of the C++ Standard section 17.5.2.1.3 Bitmask types. This is consistent with Direct3D 12's use of the
DEFINE_ENUM_FLAG_OPERATORS
macro. This may have breaking change impacts to client code:You cannot pass the
0
literal as your flags value. Instead you must make use of the appropriate default enum value:CNORM_DEFAULT
,VALIDATE_DEFAULT
, orMESHLET_DEFAULT
.Use the enum type instead of
DWORD
if building up flags values locally with bitmask operations. For example,CNORM_FLAGS flags = CNORM_DEFAULT; if (...) flags |= CNORM_WIND_CW;
The UWP projects and the VS 2019 Win10 classic desktop project include configurations for the ARM64 platform. These require VS 2017 (15.9 update) or VS 2019 to build, with the ARM64 toolset installed.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
native | native is compatible. |
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated | |
---|---|---|---|
2022.3.24.1 | 989 | 3/24/2022 | |
2022.3.1.1 | 583 | 3/1/2022 | |
2021.11.8.1 | 771 | 11/9/2021 | |
2021.6.10.1 | 1,591 | 6/10/2021 | |
2021.4.7.2 | 650 | 4/7/2021 | |
2021.1.10.1 | 699 | 1/10/2021 | |
2020.11.12.1 | 854 | 11/12/2020 | |
2020.8.15.1 | 948 | 8/16/2020 | |
2020.7.2.1 | 812 | 7/3/2020 | |
2020.6.2.1 | 809 | 6/2/2020 | |
2020.5.10.1 | 787 | 5/10/2020 | |
2020.2.15.2 | 932 | 2/15/2020 |
Matches the June 9, 2021 release on GitHub.