diff options
| author | 2020-01-16 04:00:52 -0300 | |
|---|---|---|
| committer | 2020-01-16 17:30:55 -0300 | |
| commit | 63ba41a26d6bfdd30a4d7cd0879003fb4000332b (patch) | |
| tree | 03ab5eb4426af574feeba06adde3842a8e2d92d5 /src/video_core/shader/node.h | |
| parent | Merge pull request #3308 from lioncash/private (diff) | |
| download | yuzu-63ba41a26d6bfdd30a4d7cd0879003fb4000332b.tar.gz yuzu-63ba41a26d6bfdd30a4d7cd0879003fb4000332b.tar.xz yuzu-63ba41a26d6bfdd30a4d7cd0879003fb4000332b.zip | |
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 { | |||
| 162 | AtomicImageXor, /// (MetaImage, int[N] coords) -> void | 162 | AtomicImageXor, /// (MetaImage, int[N] coords) -> void |
| 163 | AtomicImageExchange, /// (MetaImage, int[N] coords) -> void | 163 | AtomicImageExchange, /// (MetaImage, int[N] coords) -> void |
| 164 | 164 | ||
| 165 | UAtomicAdd, /// (smem, uint) -> uint | ||
| 166 | |||
| 165 | Branch, /// (uint branch_target) -> void | 167 | Branch, /// (uint branch_target) -> void |
| 166 | BranchIndirect, /// (uint branch_target) -> void | 168 | BranchIndirect, /// (uint branch_target) -> void |
| 167 | PushFlowStack, /// (uint branch_target) -> void | 169 | PushFlowStack, /// (uint branch_target) -> void |