diff options
| author | bunnei <bunneidev@gmail.com> | 2020-01-18 00:54:07 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-01-18 00:54:07 -0500 |
| commit | 15163edaaa6a452e970de6c2577f9d51aa76bea1 (patch) | |
| tree | 80b21abaee7d30f3bfd33a2eacb0a090d3bec8d6 /src/video_core/shader/node.h | |
| parent | 3cce5056ff6ba480c460ff97d897118ee644b4e5 (diff) | |
| parent | 63ba41a26d6bfdd30a4d7cd0879003fb4000332b (diff) | |
Merge pull request #3312 from ReinUsesLisp/atoms-u32
shader/memory: Implement ATOMS.ADD.U32
Diffstat (limited to 'src/video_core/shader/node.h')
| -rw-r--r-- | src/video_core/shader/node.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video_core/shader/node.h b/src/video_core/shader/node.h index 4e155542a..075c7d07c 100644 --- a/src/video_core/shader/node.h +++ b/src/video_core/shader/node.h @@ -162,6 +162,8 @@ enum class OperationCode { AtomicImageXor, /// (MetaImage, int[N] coords) -> void AtomicImageExchange, /// (MetaImage, int[N] coords) -> void + UAtomicAdd, /// (smem, uint) -> uint + Branch, /// (uint branch_target) -> void BranchIndirect, /// (uint branch_target) -> void PushFlowStack, /// (uint branch_target) -> void |
