All Projects → microsoft → Directxmesh

microsoft / Directxmesh

Licence: mit
DirectXMesh geometry processing library

Projects that are alternatives of or similar to Directxmesh

Directxtk12
The DirectX Tool Kit (aka DirectXTK12) is a collection of helper classes for writing DirectX 12 code in C++
Stars: ✭ 765 (+71.14%)
Mutual labels:  microsoft, xbox, directx, directx-12, uwp, desktop
Directxmath
DirectXMath is an all inline SIMD C++ linear algebra library for use in games and graphics apps
Stars: ✭ 859 (+92.17%)
Mutual labels:  microsoft, xbox, directx, uwp, desktop
Directxtk
The DirectX Tool Kit (aka DirectXTK) is a collection of helper classes for writing DirectX 11.x code in C++
Stars: ✭ 1,918 (+329.08%)
Mutual labels:  microsoft, xbox, directx, uwp, desktop
Directxtex
DirectXTex texture processing library
Stars: ✭ 1,039 (+132.44%)
Mutual labels:  microsoft, xbox, directx, directx-12
Directx Vs Templates
Direct3D Visual Studio Templates
Stars: ✭ 205 (-54.14%)
Mutual labels:  xbox, uwp, desktop
Xbox Atg Samples
Game development samples published by the Xbox Advanced Technology Group using the Xbox One XDK and for the Universal Windows Platform (UWP).
Stars: ✭ 430 (-3.8%)
Mutual labels:  microsoft, uwp
CrossWindow-Demos
🥪 Examples of how to use CrossWindow for things like rendering graphics, listening to events, etc.
Stars: ✭ 48 (-89.26%)
Mutual labels:  directx, directx-12
Nethereum.UI.Wallet.Sample
Cross platform wallet example using Nethereum, Xamarin.Forms and MvvmCross
Stars: ✭ 77 (-82.77%)
Mutual labels:  uwp, xbox
DXSample
Sample Program for DirectX 12 + Swift
Stars: ✭ 57 (-87.25%)
Mutual labels:  directx, directx-12
Cloneapp
📦Easily Backup & Restore Windows Programs Settings
Stars: ✭ 163 (-63.53%)
Mutual labels:  microsoft, uwp
Fairtris
Clone of the official classic Tetris® game for the NES console, intended for Windows and Linux systems. It implements the original mechanics and includes many regional versions and several RNGs (all in one executable).
Stars: ✭ 30 (-93.29%)
Mutual labels:  directx, desktop
pac-man-emulator
🕹 An emulator for the Pac-Man arcade machine (Zilog Z80 CPU) for Win/Mac/*nix and Xbox One.
Stars: ✭ 20 (-95.53%)
Mutual labels:  uwp, xbox
Xbox-GDK-Samples
Game development samples published by the Xbox Advanced Technology Group using the Microsoft GDK.
Stars: ✭ 128 (-71.36%)
Mutual labels:  microsoft, xbox
ConvectionKernels
Fast, high-quality texture compression library for many formats
Stars: ✭ 40 (-91.05%)
Mutual labels:  directx, directx-12
ContextMenuForWindows11
Add Custom Context Menu For Windows11
Stars: ✭ 693 (+55.03%)
Mutual labels:  microsoft, uwp
Directx Headers
Official DirectX headers available under an open source license
Stars: ✭ 173 (-61.3%)
Mutual labels:  microsoft, directx
Unity-Text-to-Speech
Sample app used to demonstrate the use of Microsoft Cognitive Services Text-to-Speech APIs (aka Speech Synthesis) from within Unity.
Stars: ✭ 67 (-85.01%)
Mutual labels:  microsoft, uwp
Fx Gltf
A C++14/C++17 header-only library for simple, efficient, and robust serialization/deserialization of glTF 2.0
Stars: ✭ 257 (-42.51%)
Mutual labels:  directx, directx-12
Pancake
Lightweight, Fast, Easy-to-use HTML5 2D game framework!
Stars: ✭ 79 (-82.33%)
Mutual labels:  desktop, xbox
Sylphyhorn
Virtual Desktop Tools for Windows 10.
Stars: ✭ 271 (-39.37%)
Mutual labels:  uwp, desktop

DirectX Logo

DirectXMesh geometry processing library

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

Copyright (c) Microsoft Corporation.

January 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).

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.

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, or MESHLET_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.

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.

When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact [email protected] with any additional questions or comments.

Trademarks

This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow Microsoft's Trademark & Brand Guidelines. Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party's policies.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].