Implement R16 texture format (#147)
This commit is contained in:
parent
46dc89f8dd
commit
98e6a34608
4 changed files with 4 additions and 0 deletions
|
@ -17,6 +17,7 @@ namespace Ryujinx.HLE.Gpu
|
|||
case GalTextureFormat.A1B5G5R5: return Read5551 (Memory, Texture);
|
||||
case GalTextureFormat.B5G6R5: return Read565 (Memory, Texture);
|
||||
case GalTextureFormat.G8R8: return Read2Bpp (Memory, Texture);
|
||||
case GalTextureFormat.R16: return Read2Bpp (Memory, Texture);
|
||||
case GalTextureFormat.R8: return Read1Bpp (Memory, Texture);
|
||||
case GalTextureFormat.BC7U: return Read16Bpt4x4(Memory, Texture);
|
||||
case GalTextureFormat.BC1: return Read8Bpt4x4 (Memory, Texture);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue