mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 15:58:35 +00:00
13 lines
232 B
C#
13 lines
232 B
C#
|
namespace Ryujinx.Graphics.Gal
|
|||
|
{
|
|||
|
public enum GalTextureType
|
|||
|
{
|
|||
|
Snorm = 1,
|
|||
|
Unorm = 2,
|
|||
|
Sint = 3,
|
|||
|
Uint = 4,
|
|||
|
Snorm_Force_Fp16 = 5,
|
|||
|
Unorm_Force_Fp16 = 6,
|
|||
|
Float = 7
|
|||
|
}
|
|||
|
}
|