diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/video_core/shader/node.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/src/video_core/shader/node.h b/src/video_core/shader/node.h index 8f1d9bc95..5fcc9da60 100644 --- a/src/video_core/shader/node.h +++ b/src/video_core/shader/node.h | |||
| @@ -162,21 +162,21 @@ 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 | AtomicUExchange, /// (memory, {u}int) -> {u}int | 165 | AtomicUExchange, /// (memory, uint) -> uint |
| 166 | AtomicUAdd, /// (memory, {u}int) -> {u}int | 166 | AtomicUAdd, /// (memory, uint) -> uint |
| 167 | AtomicUMin, /// (memory, {u}int) -> {u}int | 167 | AtomicUMin, /// (memory, uint) -> uint |
| 168 | AtomicUMax, /// (memory, {u}int) -> {u}int | 168 | AtomicUMax, /// (memory, uint) -> uint |
| 169 | AtomicUAnd, /// (memory, {u}int) -> {u}int | 169 | AtomicUAnd, /// (memory, uint) -> uint |
| 170 | AtomicUOr, /// (memory, {u}int) -> {u}int | 170 | AtomicUOr, /// (memory, uint) -> uint |
| 171 | AtomicUXor, /// (memory, {u}int) -> {u}int | 171 | AtomicUXor, /// (memory, uint) -> uint |
| 172 | 172 | ||
| 173 | AtomicIExchange, /// (memory, {u}int) -> {u}int | 173 | AtomicIExchange, /// (memory, int) -> int |
| 174 | AtomicIAdd, /// (memory, {u}int) -> {u}int | 174 | AtomicIAdd, /// (memory, int) -> int |
| 175 | AtomicIMin, /// (memory, {u}int) -> {u}int | 175 | AtomicIMin, /// (memory, int) -> int |
| 176 | AtomicIMax, /// (memory, {u}int) -> {u}int | 176 | AtomicIMax, /// (memory, int) -> int |
| 177 | AtomicIAnd, /// (memory, {u}int) -> {u}int | 177 | AtomicIAnd, /// (memory, int) -> int |
| 178 | AtomicIOr, /// (memory, {u}int) -> {u}int | 178 | AtomicIOr, /// (memory, int) -> int |
| 179 | AtomicIXor, /// (memory, {u}int) -> {u}int | 179 | AtomicIXor, /// (memory, int) -> int |
| 180 | 180 | ||
| 181 | Branch, /// (uint branch_target) -> void | 181 | Branch, /// (uint branch_target) -> void |
| 182 | BranchIndirect, /// (uint branch_target) -> void | 182 | BranchIndirect, /// (uint branch_target) -> void |