summaryrefslogtreecommitdiff
path: root/src/video_core/shader/node.h
diff options
context:
space:
mode:
authorGravatar bunnei2020-01-18 00:54:07 -0500
committerGravatar GitHub2020-01-18 00:54:07 -0500
commit15163edaaa6a452e970de6c2577f9d51aa76bea1 (patch)
tree80b21abaee7d30f3bfd33a2eacb0a090d3bec8d6 /src/video_core/shader/node.h
parentMerge pull request #3318 from jroweboy/remove-cpu-vendor (diff)
parentshader/memory: Implement ATOMS.ADD.U32 (diff)
downloadyuzu-15163edaaa6a452e970de6c2577f9d51aa76bea1.tar.gz
yuzu-15163edaaa6a452e970de6c2577f9d51aa76bea1.tar.xz
yuzu-15163edaaa6a452e970de6c2577f9d51aa76bea1.zip
Merge pull request #3312 from ReinUsesLisp/atoms-u32
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 {
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 UAtomicAdd, /// (smem, uint) -> uint
166
165 Branch, /// (uint branch_target) -> void 167 Branch, /// (uint branch_target) -> void
166 BranchIndirect, /// (uint branch_target) -> void 168 BranchIndirect, /// (uint branch_target) -> void
167 PushFlowStack, /// (uint branch_target) -> void 169 PushFlowStack, /// (uint branch_target) -> void