Support conditional on BRK and SYNC shader instructions (#1878)

* Support conditional on BRK and SYNC shader instructions

* Add TODO comment and bump cache version
This commit is contained in:
gdkchan 2021-01-08 22:55:55 -03:00 committed by GitHub
parent a9cb31e75f
commit b9200dd734
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 23 additions and 13 deletions

View file

@ -2,15 +2,12 @@ using Ryujinx.Graphics.Shader.Instructions;
namespace Ryujinx.Graphics.Shader.Decoders
{
class OpCodeExit : OpCode
class OpCodeExit : OpCodeConditional
{
public Condition Condition { get; }
public new static OpCode Create(InstEmitter emitter, ulong address, long opCode) => new OpCodeExit(emitter, address, opCode);
public OpCodeExit(InstEmitter emitter, ulong address, long opCode) : base(emitter, address, opCode)
{
Condition = (Condition)opCode.Extract(0, 5);
}
}
}