2018-09-08 10:51:50 -07:00
|
|
|
namespace Ryujinx.Graphics.Texture
|
2018-04-08 12:17:35 -07:00
|
|
|
{
|
2018-09-08 10:51:50 -07:00
|
|
|
public enum TextureSwizzle
|
2018-04-08 12:17:35 -07:00
|
|
|
{
|
|
|
|
_1dBuffer = 0,
|
|
|
|
PitchColorKey = 1,
|
|
|
|
Pitch = 2,
|
|
|
|
BlockLinear = 3,
|
|
|
|
BlockLinearColorKey = 4
|
|
|
|
}
|
|
|
|
}
|