mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 18:48:36 +00:00
11 lines
234 B
C#
11 lines
234 B
C#
|
namespace Ryujinx.Graphics.Gpu
|
||
|
{
|
||
|
enum TextureSwizzle
|
||
|
{
|
||
|
_1dBuffer = 0,
|
||
|
PitchColorKey = 1,
|
||
|
Pitch = 2,
|
||
|
BlockLinear = 3,
|
||
|
BlockLinearColorKey = 4
|
||
|
}
|
||
|
}
|