Addressing comments in review

This commit is contained in:
rcaridade145 2024-11-26 22:26:02 +00:00
parent 90480edc02
commit c8cc31ebb3
1 changed files with 4 additions and 7 deletions

View File

@ -81,13 +81,10 @@ uint32 LatteTextureReadbackInfoVk::GetImageSize(LatteTextureView* textureView)
} }
else if (textureView->format == Latte::E_GX2SURFFMT::R5_G6_B5_UNORM ) else if (textureView->format == Latte::E_GX2SURFFMT::R5_G6_B5_UNORM )
{ {
cemu_assert(textureFormat == VK_FORMAT_R8G8B8A8_UNORM); if(textureFormat == VK_FORMAT_R5G6B5_UNORM_PACK16){
return baseTexture->width * baseTexture->height * 2; return baseTexture->width * baseTexture->height * 2;
} }
else if (textureView->format == Latte::E_GX2SURFFMT::R5_G5_B5_A1_UNORM ) return 0;
{
cemu_assert(textureFormat == VK_FORMAT_R8G8B8A8_UNORM);
return baseTexture->width * baseTexture->height * 4;
} }
else else
{ {