Ryujinx/Ryujinx.Graphics/Gal/GalTextureType.cs

13 lines
228 B
C#
Raw Normal View History

namespace Ryujinx.Graphics.Gal
{
public enum GalTextureType
{
Snorm = 1,
Unorm = 2,
Sint = 3,
Uint = 4,
SnormForceFp16 = 5,
UnormForceFp16 = 6,
Float = 7
}
}