mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-25 15:17:43 +02:00

* Get rid of Reflection.Emit dependency on CPU and Shader projects * Remove useless private sets * Missed those due to the alignment
18 lines
No EOL
581 B
C#
18 lines
No EOL
581 B
C#
using Ryujinx.Graphics.Shader.Instructions;
|
|
|
|
namespace Ryujinx.Graphics.Shader.Decoders
|
|
{
|
|
class OpCodeLopCbuf : OpCodeLop, IOpCodeCbuf
|
|
{
|
|
public int Offset { get; }
|
|
public int Slot { get; }
|
|
|
|
public new static OpCode Create(InstEmitter emitter, ulong address, long opCode) => new OpCodeLopCbuf(emitter, address, opCode);
|
|
|
|
public OpCodeLopCbuf(InstEmitter emitter, ulong address, long opCode) : base(emitter, address, opCode)
|
|
{
|
|
Offset = opCode.Extract(20, 14);
|
|
Slot = opCode.Extract(34, 5);
|
|
}
|
|
}
|
|
} |