CMPR texel blocks are 8x8 in hardware, even though the source format says 4x4.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6655 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
b5d482a0d3
commit
444854601c
|
@ -146,7 +146,7 @@ int TexDecoder_GetBlockHeightInTexels(u32 format)
|
|||
case GX_TF_C4: return 8;
|
||||
case GX_TF_C8: return 4;
|
||||
case GX_TF_C14X2: return 4;
|
||||
case GX_TF_CMPR: return 4;
|
||||
case GX_TF_CMPR: return 8;
|
||||
case GX_CTF_R4: return 8;
|
||||
case GX_CTF_RA4: return 4;
|
||||
case GX_CTF_RA8: return 4;
|
||||
|
|
Loading…
Reference in New Issue