aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/shader/node.h
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2020-01-16 04:00:52 -0300
committerReinUsesLisp <reinuseslisp@airmail.cc>2020-01-16 17:30:55 -0300
commit63ba41a26d6bfdd30a4d7cd0879003fb4000332b (patch)
tree03ab5eb4426af574feeba06adde3842a8e2d92d5 /src/video_core/shader/node.h
parent30faf6a9648fc2fd3939c588094f2e571b2d3cc2 (diff)
shader/memory: Implement ATOMS.ADD.U32
Diffstat (limited to 'src/video_core/shader/node.h')
-rw-r--r--src/video_core/shader/node.h2
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 {
AtomicImageXor, /// (MetaImage, int[N] coords) -> void
AtomicImageExchange, /// (MetaImage, int[N] coords) -> void
+ UAtomicAdd, /// (smem, uint) -> uint
+
Branch, /// (uint branch_target) -> void
BranchIndirect, /// (uint branch_target) -> void
PushFlowStack, /// (uint branch_target) -> void