Re-add NVDEC project (not integrated)
This commit is contained in:
18
Ryujinx.Graphics.Nvdec/ChCommandEntry.cs
Normal file
18
Ryujinx.Graphics.Nvdec/ChCommandEntry.cs
Normal file
@ -0,0 +1,18 @@
|
||||
namespace Ryujinx.Graphics
|
||||
{
|
||||
struct ChCommand
|
||||
{
|
||||
public ChClassId ClassId { get; private set; }
|
||||
|
||||
public int MethodOffset { get; private set; }
|
||||
|
||||
public int[] Arguments { get; private set; }
|
||||
|
||||
public ChCommand(ChClassId classId, int methodOffset, params int[] arguments)
|
||||
{
|
||||
ClassId = classId;
|
||||
MethodOffset = methodOffset;
|
||||
Arguments = arguments;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user