aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Gpu/State/CopyTextureControl.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics.Gpu/State/CopyTextureControl.cs')
-rw-r--r--Ryujinx.Graphics.Gpu/State/CopyTextureControl.cs22
1 files changed, 0 insertions, 22 deletions
diff --git a/Ryujinx.Graphics.Gpu/State/CopyTextureControl.cs b/Ryujinx.Graphics.Gpu/State/CopyTextureControl.cs
deleted file mode 100644
index d6256f68..00000000
--- a/Ryujinx.Graphics.Gpu/State/CopyTextureControl.cs
+++ /dev/null
@@ -1,22 +0,0 @@
-namespace Ryujinx.Graphics.Gpu.State
-{
- /// <summary>
- /// Texture to texture copy control.
- /// </summary>
- struct CopyTextureControl
- {
-#pragma warning disable CS0649
- public uint Packed;
-#pragma warning restore CS0649
-
- public bool UnpackOriginCorner()
- {
- return (Packed & 1u) != 0;
- }
-
- public bool UnpackLinearFilter()
- {
- return (Packed & (1u << 4)) != 0;
- }
- }
-} \ No newline at end of file