Merge pull request #3681 from lioncash/component

decoder/image: Fix incorrect G24R8 component sizes in GetComponentSize()
This commit is contained in:
Rodrigo Locatti 2020-11-24 04:38:03 -03:00 committed by GitHub
commit fbda5e9ec9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -212,10 +212,10 @@ u32 GetComponentSize(TextureFormat format, std::size_t component) {
return 0; return 0;
case TextureFormat::R8G24: case TextureFormat::R8G24:
if (component == 0) { if (component == 0) {
return 8; return 24;
} }
if (component == 1) { if (component == 1) {
return 24; return 8;
} }
return 0; return 0;
case TextureFormat::R8G8: case TextureFormat::R8G8: