mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 15:58:35 +00:00
20 lines
566 B
C#
20 lines
566 B
C#
|
using Ryujinx.Graphics.Shader.Instructions;
|
||
|
|
||
|
namespace Ryujinx.Graphics.Shader.Decoders
|
||
|
{
|
||
|
class OpCodeTld4s : OpCodeTextureScalar
|
||
|
{
|
||
|
public bool HasDepthCompare { get; }
|
||
|
public bool HasOffset { get; }
|
||
|
|
||
|
public int GatherCompIndex { get; }
|
||
|
|
||
|
public OpCodeTld4s(InstEmitter emitter, ulong address, long opCode) : base(emitter, address, opCode)
|
||
|
{
|
||
|
HasDepthCompare = opCode.Extract(50);
|
||
|
HasOffset = opCode.Extract(51);
|
||
|
|
||
|
GatherCompIndex = opCode.Extract(52, 2);
|
||
|
}
|
||
|
}
|
||
|
}
|