summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader/node.h
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2019-11-03 03:44:13 +0100
committerReinUsesLisp <reinuseslisp@airmail.cc>2019-11-08 00:08:41 +0100
commit08b2b1080a2e5794c65ebb999c435f6eb9d1aa26 (patch)
tree07ff442f13d3d74b7d2cb84a62cc2de222a128eb /src/video_core/shader/node.h
parentMerge pull request #3032 from ReinUsesLisp/simplify-control-flow-brx (diff)
downloadyuzu-08b2b1080a2e5794c65ebb999c435f6eb9d1aa26.tar
yuzu-08b2b1080a2e5794c65ebb999c435f6eb9d1aa26.tar.gz
yuzu-08b2b1080a2e5794c65ebb999c435f6eb9d1aa26.tar.bz2
yuzu-08b2b1080a2e5794c65ebb999c435f6eb9d1aa26.tar.lz
yuzu-08b2b1080a2e5794c65ebb999c435f6eb9d1aa26.tar.xz
yuzu-08b2b1080a2e5794c65ebb999c435f6eb9d1aa26.tar.zst
yuzu-08b2b1080a2e5794c65ebb999c435f6eb9d1aa26.zip
Diffstat (limited to 'src/video_core/shader/node.h')
-rw-r--r--src/video_core/shader/node.h11
1 files changed, 2 insertions, 9 deletions
diff --git a/src/video_core/shader/node.h b/src/video_core/shader/node.h
index 4300d9ff4..bd3547e0d 100644
--- a/src/video_core/shader/node.h
+++ b/src/video_core/shader/node.h
@@ -181,15 +181,8 @@ enum class OperationCode {
VoteAny, /// (bool) -> bool
VoteEqual, /// (bool) -> bool
- ShuffleIndexed, /// (uint value, uint index, uint width) -> uint
- ShuffleUp, /// (uint value, uint index, uint width) -> uint
- ShuffleDown, /// (uint value, uint index, uint width) -> uint
- ShuffleButterfly, /// (uint value, uint index, uint width) -> uint
-
- InRangeShuffleIndexed, /// (uint index, uint width) -> bool
- InRangeShuffleUp, /// (uint index, uint width) -> bool
- InRangeShuffleDown, /// (uint index, uint width) -> bool
- InRangeShuffleButterfly, /// (uint index, uint width) -> bool
+ ThreadId, /// () -> uint
+ ShuffleIndexed, /// (uint value, uint index) -> uint
Amount,
};