summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader/node.h
diff options
context:
space:
mode:
authorNguyen Dac Nam <nam.kazt.91@gmail.com>2020-03-13 17:04:20 +0100
committernamkazy <nam.kazt.91@gmail.com>2020-03-30 12:44:44 +0200
commitc119473c4083ec53c5de70e2536cd7eb5925ffbb (patch)
tree07a57d31c91d19c016328f2076b0a95148fbddc4 /src/video_core/shader/node.h
parentMerge pull request #3568 from bunnei/time-calcspan (diff)
downloadyuzu-c119473c4083ec53c5de70e2536cd7eb5925ffbb.tar
yuzu-c119473c4083ec53c5de70e2536cd7eb5925ffbb.tar.gz
yuzu-c119473c4083ec53c5de70e2536cd7eb5925ffbb.tar.bz2
yuzu-c119473c4083ec53c5de70e2536cd7eb5925ffbb.tar.lz
yuzu-c119473c4083ec53c5de70e2536cd7eb5925ffbb.tar.xz
yuzu-c119473c4083ec53c5de70e2536cd7eb5925ffbb.tar.zst
yuzu-c119473c4083ec53c5de70e2536cd7eb5925ffbb.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/shader/node.h16
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 {
AtomicImageXor, /// (MetaImage, int[N] coords) -> void
AtomicImageExchange, /// (MetaImage, int[N] coords) -> void
- AtomicAdd, /// (memory, {u}int) -> {u}int
+ AtomicUExchange, /// (memory, {u}int) -> {u}int
+ AtomicUAdd, /// (memory, {u}int) -> {u}int
+ AtomicUMin, /// (memory, {u}int) -> {u}int
+ AtomicUMax, /// (memory, {u}int) -> {u}int
+ AtomicUAnd, /// (memory, {u}int) -> {u}int
+ AtomicUOr, /// (memory, {u}int) -> {u}int
+ AtomicUXor, /// (memory, {u}int) -> {u}int
+
+ AtomicIExchange, /// (memory, {u}int) -> {u}int
+ AtomicIAdd, /// (memory, {u}int) -> {u}int
+ AtomicIMin, /// (memory, {u}int) -> {u}int
+ AtomicIMax, /// (memory, {u}int) -> {u}int
+ AtomicIAnd, /// (memory, {u}int) -> {u}int
+ AtomicIOr, /// (memory, {u}int) -> {u}int
+ AtomicIXor, /// (memory, {u}int) -> {u}int
Branch, /// (uint branch_target) -> void
BranchIndirect, /// (uint branch_target) -> void