0e1e094b7a
* Improve texture tables * More renaming and other tweaks * Minor tweaks
16 lines
No EOL
418 B
C#
16 lines
No EOL
418 B
C#
namespace Ryujinx.Graphics.Gal
|
|
{
|
|
public enum GalZetaFormat
|
|
{
|
|
D32Float = 0x0a,
|
|
D16Unorm = 0x13,
|
|
S8D24Unorm = 0x14,
|
|
D24X8Unorm = 0x15,
|
|
D24S8Unorm = 0x16,
|
|
D24C8Unorm = 0x18,
|
|
D32S8X24Float = 0x19,
|
|
D24X8S8C8X16Unorm = 0x1d,
|
|
D32X8C8X16Float = 0x1e,
|
|
D32S8C8X16Float = 0x1f
|
|
}
|
|
} |