diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2021-04-16 18:47:26 -0300 |
---|---|---|
committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-07-22 21:51:28 -0400 |
commit | 80940b17069f6baa733a9b572445b27bc7509137 (patch) | |
tree | b6d73140e8f84cd4c3916895cbf054d124c98b7e /src/shader_recompiler/frontend/ir/microinstruction.cpp | |
parent | 95815a3883d708f71db5119f42243e183f32f9a2 (diff) |
shader: Implement SampleMask
Diffstat (limited to 'src/shader_recompiler/frontend/ir/microinstruction.cpp')
-rw-r--r-- | src/shader_recompiler/frontend/ir/microinstruction.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/shader_recompiler/frontend/ir/microinstruction.cpp b/src/shader_recompiler/frontend/ir/microinstruction.cpp index b2d7573d99..b53fe2e2a9 100644 --- a/src/shader_recompiler/frontend/ir/microinstruction.cpp +++ b/src/shader_recompiler/frontend/ir/microinstruction.cpp @@ -75,6 +75,7 @@ bool Inst::MayHaveSideEffects() const noexcept { case Opcode::SetAttributeIndexed: case Opcode::SetPatch: case Opcode::SetFragColor: + case Opcode::SetSampleMask: case Opcode::SetFragDepth: case Opcode::WriteGlobalU8: case Opcode::WriteGlobalS8: |