From 1876b346fea647e8284a66bb6d62c38801035cff Mon Sep 17 00:00:00 2001 From: gdk Date: Sun, 13 Oct 2019 03:02:07 -0300 Subject: Initial work --- Ryujinx.Graphics/GpuMethodCall.cs | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 Ryujinx.Graphics/GpuMethodCall.cs (limited to 'Ryujinx.Graphics/GpuMethodCall.cs') 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 -- cgit v1.2.3