Initial work
This commit is contained in:
parent
f617fb542a
commit
1876b346fe
519 changed files with 15258 additions and 12574 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue