AustinJ235 / basalt

A rust library that provides window creation, input handling, and most importantly a UI.
MIT License
149 stars 5 forks source link

Alternative Atlas formats aren't actually implemented. #28

Closed AustinJ235 closed 2 years ago

AustinJ235 commented 2 years ago

During basalt creating the following formats are check for support using the highest one.

R16G16B16A16_UNORM,
R8G8B8A8_UNORM,
B8G8R8A8_UNORM,
A8B8G8R8_UNORM_PACK32,

The Atlas assumes R16G16B16A16_UNORM, so the other formats result in corrupted images. (16b source being copied onto 8b)