Inconsistency on Vulkan Format enum
Open
area-Vulkan
enhancement
verify-3.0
- Dominant language
- C#
- Stars
- 5.2k
- Forks
- 477
- Avg merge
- 3d 16h
- Merged PRs (30d)
- 2
Description
# Summary of feature
Currently there's a small inconsistency on the Format enum names. The snorm formats have the `N` capitalized, so they are `SNorm`, while the unorm ones aren't.
Example:
```
B8G8R8A8Unorm
B8G8R8A8SNorm
```
I propose changing them to:
```
B8G8R8A8Unorm
B8G8R8A8Snorm
```
So basically, changing `SNorm` to `Snorm`.
For consistency. I hope it's not too late to do this kind of breaking change on the library.
Contributor guide
Assessment
This issue has not been assessed yet.