DirectXMesh geometry processing library
Перейти к файлу
Chuck Walbourn cde949addd meshconvert: added -l switch 2020-04-13 17:16:19 -07:00
.nuget April 3, 2020 2020-04-03 16:56:02 -07:00
DirectXMesh Suppress /analyze noise 2020-04-12 22:01:19 -07:00
Meshconvert meshconvert: added -l switch 2020-04-13 17:16:19 -07:00
Utilities Minor code review 2020-03-03 12:16:23 -08:00
.editorconfig Added editorconfig 2018-05-09 18:12:30 -07:00
.gitattributes Added attributes 2016-08-18 18:05:25 -07:00
.gitignore Added command-line utility to cmake project 2019-07-12 01:00:46 -07:00
CMakeLists.txt Guard pch usage to support older CMake 2020-03-29 15:08:11 -07:00
CMakeSettings.json Added command-line utility to cmake project 2019-07-12 01:00:46 -07:00
DirectXMesh_Desktop_2017.sln Renamed desktop 2017/2019 sln to use 'x86' instead of 'Win32' 2019-12-28 19:21:09 -08:00
DirectXMesh_Desktop_2017_Win10.sln Add ARM64 desktop config to VS 2017 project 2020-01-13 21:33:27 -08:00
DirectXMesh_Desktop_2019.sln Renamed desktop 2017/2019 sln to use 'x86' instead of 'Win32' 2019-12-28 19:21:09 -08:00
DirectXMesh_Desktop_2019_Win10.sln Renamed desktop 2017/2019 sln to use 'x86' instead of 'Win32' 2019-12-28 19:21:09 -08:00
DirectXMesh_Windows10_2017.sln Renamed DirectXMesh_Windows10.vcxproj to _Windows10_2017.vcxproj, added VS 2019 UWP projects 2019-07-01 00:44:16 -07:00
DirectXMesh_Windows10_2019.sln Renamed DirectXMesh_Windows10.vcxproj to _Windows10_2017.vcxproj, added VS 2019 UWP projects 2019-07-01 00:44:16 -07:00
DirectXMesh_XboxOneXDK_2017.sln Added editorconfig 2018-05-09 18:12:30 -07:00
HISTORY.md April 3, 2020 2020-04-03 16:56:02 -07:00
LICENSE Updated copyright year 2020-01-13 09:58:16 -08:00
README.md April 3, 2020 2020-04-03 16:56:02 -07:00

README.md

DirectX Logo

DirectXMesh geometry processing library

http://go.microsoft.com/fwlink/?LinkID=324981

Copyright (c) Microsoft Corporation. All rights reserved.

April 3, 2020

This package contains DirectXMesh, a shared source library for performing various geometry content processing operations including generating normals and tangent frames, triangle adjacency computations, and vertex cache optimization.

This code is designed to build with Visual Studio 2017 (15.9), Visual Studio 2019, or clang for Windows v9. It is recommended that you make use of the Windows 10 May 2019 Update SDK (18362).

These components are designed to work without requiring any content from the legacy DirectX SDK. For details, see Where is the DirectX SDK?.

Directory Layout

  • DirectXMesh\

    • This contains the DirectXMesh library.

The majority of the header files here are intended for implementation the library only (DirectXMeshP.h, scoped.h, etc.). Only DirectXMesh.h and DirectXMesh.inl are meant as a 'public' headers for the library.

  • Utilities\

    • This contains helper code related to mesh processing that is not general enough to be part of the DirectXMesh library.
      • WaveFrontReader.h: Contains a simple C++ class for reading mesh data from a WaveFront OBJ file.
  • Meshconvert\

    • This DirectXMesh sample is an implementation of the meshconvert command-line texture utility from the legacy DirectX SDK utilizing DirectXMesh rather than D3DX.

This tool does not support legacy .X files, but can export CMO, SDKMESH, and VBO files.

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.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

Release Notes

  • The VS 2017/2019 projects make use of /permissive- for improved C++ standard conformance. Use of a Windows 10 SDK prior to the Fall Creators Update (16299) or an Xbox One XDK prior to June 2017 QFE 4 may result in failures due to problems with the system headers. You can work around these by disabling this switch in the project files which is found in the <ConformanceMode> elements, or in some cases adding /Zc:twoPhase- to the <AdditionalOptions> elements.

  • The VS 2017 projects require the 15.5 update or later. For UWP and Win32 classic desktop projects with the 15.5 - 15.7 updates, you need to install the standalone Windows 10 SDK (17763) which is otherwise included in the 15.8.6 or later update. Older VS 2017 updates will fail to load the projects due to use of the element. If using the 15.5 or 15.6 updates, you will see warning D9002: ignoring unknown option '/Zc:__cplusplus' because this switch isn't supported until 15.7. It is safe to ignore this warning, or you can edit the project files <AdditionalOptions> elements.

  • The VS 2019 projects use a <WindowsTargetPlatformVersion> of 10.0 which indicates to use the latest installed version. This should be Windows 10 SDK (17763) or later.

  • 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.