aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/GpuMethodCall.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics/GpuMethodCall.cs')
-rw-r--r--Ryujinx.Graphics/GpuMethodCall.cs24
1 files changed, 0 insertions, 24 deletions
diff --git a/Ryujinx.Graphics/GpuMethodCall.cs b/Ryujinx.Graphics/GpuMethodCall.cs
deleted file mode 100644
index 4a310b07..00000000
--- a/Ryujinx.Graphics/GpuMethodCall.cs
+++ /dev/null
@@ -1,24 +0,0 @@
-namespace Ryujinx.Graphics
-{
- struct GpuMethodCall
- {
- public int Method { get; private set; }
- public int Argument { get; private set; }
- public int SubChannel { get; private set; }
- public int MethodCount { get; private set; }
-
- public bool IsLastCall => MethodCount <= 1;
-
- public GpuMethodCall(
- int method,
- int argument,
- int subChannel = 0,
- int methodCount = 0)
- {
- Method = method;
- Argument = argument;
- SubChannel = subChannel;
- MethodCount = methodCount;
- }
- }
-} \ No newline at end of file