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