diff options
| author | 2020-03-13 23:06:26 +0700 | |
|---|---|---|
| committer | 2020-03-30 17:44:44 +0700 | |
| commit | 2c780db5b9481b71b8d034db545d489bc656cfdd (patch) | |
| tree | 00c6936cdf123088111bab30a2723fe4471612b9 /src | |
| parent | shader_decode: add Atomic op for common usage (diff) | |
| download | yuzu-2c780db5b9481b71b8d034db545d489bc656cfdd.tar.gz yuzu-2c780db5b9481b71b8d034db545d489bc656cfdd.tar.xz yuzu-2c780db5b9481b71b8d034db545d489bc656cfdd.zip | |
shader: node - update correct comment
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 |