microsoft / UVAtlas

UVAtlas isochart texture atlas
https://walbourn.github.io/uvatlas-return-of-the-isochart/
MIT License
842 stars 148 forks source link

Use fixed width integers for underlying enum types #188

Closed walbourn closed 3 days ago

walbourn commented 4 days 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 4 days ago

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