Update ImageUtils.cs

Fix `GalImageFormat.D32S8` definition.
This commit is contained in:
Ac_K 2018-11-09 19:29:49 +01:00 committed by GitHub
parent 44c1cf3fe5
commit 15334a9397
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -61,7 +61,7 @@ namespace Ryujinx.Graphics.Texture
{ GalTextureFormat.R11G11B10F, GalImageFormat.R11G11B10 | Float },
{ GalTextureFormat.D24S8, GalImageFormat.D24S8 | Unorm | Uint },
{ GalTextureFormat.D32F, GalImageFormat.D32 | Float },
{ GalTextureFormat.D32FX24S8, GalImageFormat.D32S8 | Unorm },
{ GalTextureFormat.D32FX24S8, GalImageFormat.D32S8 | Float },
{ GalTextureFormat.D16, GalImageFormat.D16 | Unorm },
//Compressed formats
@ -397,4 +397,4 @@ namespace Ryujinx.Graphics.Texture
}
}
}
}
}