mirror of
https://git.eden-emu.dev/archive/citron
synced 2026-04-17 02:00:45 -04:00
Merge pull request #3681 from lioncash/component
decoder/image: Fix incorrect G24R8 component sizes in GetComponentSize()
This commit is contained in:
@@ -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:
|
||||||
|
|||||||
Reference in New Issue
Block a user