diff options
Diffstat (limited to 'Ryujinx.Graphics/Texture/LinearSwizzle.cs')
| -rw-r--r-- | Ryujinx.Graphics/Texture/LinearSwizzle.cs | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/Ryujinx.Graphics/Texture/LinearSwizzle.cs b/Ryujinx.Graphics/Texture/LinearSwizzle.cs deleted file mode 100644 index ef468e27..00000000 --- a/Ryujinx.Graphics/Texture/LinearSwizzle.cs +++ /dev/null @@ -1,19 +0,0 @@ -namespace Ryujinx.Graphics.Texture -{ - class LinearSwizzle : ISwizzle - { - private int Pitch; - private int Bpp; - - public LinearSwizzle(int Pitch, int Bpp) - { - this.Pitch = Pitch; - this.Bpp = Bpp; - } - - public int GetSwizzleOffset(int X, int Y) - { - return X * Bpp + Y * Pitch; - } - } -}
\ No newline at end of file |
