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