microsoft / DirectXMesh

DirectXMesh geometry processing library
https://walbourn.github.io/directxmesh/
MIT License
786 stars 152 forks source link

Use fixed width integers for underlying enum types #172

Closed walbourn closed 1 month ago

walbourn commented 1 month ago

Originally I used DWORD for flags. When I removed Windows-specific types, I changed it to unsigned long to keep the signature the same. The ask is to use uint32_t instead which is more consistent on Windows vs. Linux.

Also removed 'extra-semi' for macro.

walbourn commented 1 month ago

Related to https://github.com/microsoft/DirectXTex/issues/443

walbourn commented 1 month ago

Related to https://github.com/microsoft/DirectXTex/issues/443