2018-09-08 13:51:50 -04:00
|
|
|
namespace Ryujinx.Graphics.Texture
|
2018-04-08 15:17:35 -04:00
|
|
|
{
|
2018-09-08 13:51:50 -04:00
|
|
|
public enum TextureSwizzle
|
2018-04-08 15:17:35 -04:00
|
|
|
{
|
2019-03-03 20:45:25 -05:00
|
|
|
_1DBuffer = 0,
|
2018-04-08 15:17:35 -04:00
|
|
|
PitchColorKey = 1,
|
|
|
|
Pitch = 2,
|
|
|
|
BlockLinear = 3,
|
|
|
|
BlockLinearColorKey = 4
|
|
|
|
}
|
|
|
|
}
|