summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader/node.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-08-29 18:58:10 +0200
committerGitHub <noreply@github.com>2019-08-29 18:58:10 +0200
commit680ab6132726946435081df6c4f2ef01ec2f1691 (patch)
tree230bc98a8bdd67a95c5abde32294655469845b3b /src/video_core/shader/node.h
parentMerge pull request #2748 from FernandoS27/align-memory (diff)
parentshader_ir: Implement VOTE (diff)
downloadyuzu-680ab6132726946435081df6c4f2ef01ec2f1691.tar
yuzu-680ab6132726946435081df6c4f2ef01ec2f1691.tar.gz
yuzu-680ab6132726946435081df6c4f2ef01ec2f1691.tar.bz2
yuzu-680ab6132726946435081df6c4f2ef01ec2f1691.tar.lz
yuzu-680ab6132726946435081df6c4f2ef01ec2f1691.tar.xz
yuzu-680ab6132726946435081df6c4f2ef01ec2f1691.tar.zst
yuzu-680ab6132726946435081df6c4f2ef01ec2f1691.zip
Diffstat (limited to 'src/video_core/shader/node.h')
-rw-r--r--src/video_core/shader/node.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/video_core/shader/node.h b/src/video_core/shader/node.h
index 5f0852364..5db9313c4 100644
--- a/src/video_core/shader/node.h
+++ b/src/video_core/shader/node.h
@@ -168,6 +168,11 @@ enum class OperationCode {
WorkGroupIdY, /// () -> uint
WorkGroupIdZ, /// () -> uint
+ BallotThread, /// (bool) -> uint
+ VoteAll, /// (bool) -> bool
+ VoteAny, /// (bool) -> bool
+ VoteEqual, /// (bool) -> bool
+
Amount,
};